* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e4e4e4;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.avatar-container {
    margin-bottom: 30px;
}

.avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #0f3460;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: scale(1.05);
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #e94560;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.location {
    font-size: 1.2em;
    color: #16a085;
    font-weight: 600;
}

/* About Section */
.about {
    background: rgba(15, 52, 96, 0.3);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid #e94560;
}

.about h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #e94560;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    text-align: justify;
}

/* Services Section */
.services {
    margin-bottom: 40px;
}

.services h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
    color: #e94560;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: rgba(15, 52, 96, 0.4);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.3);
    border-color: #e94560;
}

.service-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #16a085;
}

.service-card p {
    font-size: 0.95em;
    color: #b8b8b8;
}

/* Pricing Section */
.pricing {
    margin-bottom: 40px;
}

.pricing h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
    color: #e94560;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: rgba(15, 52, 96, 0.4);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(233, 69, 96, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.3);
    border-color: #e94560;
}

.pricing-card.featured {
    border-color: #e94560;
    background: rgba(233, 69, 96, 0.1);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #e94560 0%, #d63447 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(233, 69, 96, 0.2);
}

.pricing-header h3 {
    font-size: 1.6em;
    color: #16a085;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5em;
    font-weight: 700;
    color: #e94560;
    margin-bottom: 5px;
}

.price-note {
    font-size: 0.9em;
    color: #888;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95em;
}

.feature .check {
    color: #16a085;
    font-size: 1.2em;
    font-weight: bold;
    flex-shrink: 0;
}

.feature .cross {
    color: #666;
    font-size: 1.2em;
    font-weight: bold;
    flex-shrink: 0;
}

.feature.inactive {
    opacity: 0.5;
}

.feature.inactive span:not(.cross) {
    text-decoration: line-through;
}

/* Benefits Section */
.benefits {
    background: rgba(15, 52, 96, 0.3);
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #16a085;
}

.benefits h3 {
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 35px;
    color: #16a085;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-item {
    background: rgba(26, 26, 46, 0.5);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(22, 160, 133, 0.2);
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #16a085;
}

.benefit-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 1.2em;
    color: #16a085;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.9em;
    color: #b8b8b8;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    background: rgba(15, 52, 96, 0.3);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.contact h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
    color: #e94560;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #16a085;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(233, 69, 96, 0.3);
    border-radius: 8px;
    background: rgba(26, 26, 46, 0.6);
    color: #e4e4e4;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.3);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #e94560 0%, #d63447 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    color: #888;
    border-top: 1px solid rgba(233, 69, 96, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    .avatar {
        width: 150px;
        height: 150px;
    }

    .about,
    .contact {
        padding: 25px;
    }

    .about h2,
    .services h2,
    .contact h2 {
        font-size: 1.6em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 1.6em;
    }

    .avatar {
        width: 120px;
        height: 120px;
    }
}