* {
    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: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

/* Navigation */
nav {
    background: rgba(26, 26, 46, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(243, 156, 18, 0.3);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #e94560, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #a8dadc;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #f39c12;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Container */
.container {
    max-width: 1200px;
    padding: 40px 20px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 60px;
}

.logo {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #e94560, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
    }
    to {
        text-shadow: 0 0 40px rgba(243, 156, 18, 0.8);
    }
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #a8dadc;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: #dfe6e9;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #e94560, #f39c12);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.6);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #f39c12;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #a8dadc;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.3);
    border-color: #f39c12;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #f39c12;
}

.card-text {
    color: #b2bec3;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Service Cards */
.service-card {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.15) 0%, rgba(243, 156, 18, 0.15) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(243, 156, 18, 0.3);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #f39c12;
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.4);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.service-icon {
    font-size: 3.5rem;
    margin-right: 25px;
}

.service-title {
    font-size: 2.2rem;
    color: #f39c12;
}

.service-description {
    font-size: 1.1rem;
    color: #dfe6e9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    margin-bottom: 20px;
}

.service-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: #dfe6e9;
    font-size: 1.05rem;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
    font-size: 1.4rem;
}

/* Pricing Box */
.pricing-box {
    background: rgba(233, 69, 96, 0.2);
    border: 2px solid #e94560;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.pricing-box strong {
    color: #f39c12;
    font-size: 1.3rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: #dfe6e9;
    line-height: 1.9;
}

.about-text p {
    margin-bottom: 20px;
}

.about-highlight {
    background: rgba(243, 156, 18, 0.1);
    border-left: 4px solid #f39c12;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #a8dadc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-method {
    padding: 30px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(233, 69, 96, 0.3);
}

.contact-method-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-method-title {
    font-size: 1.4rem;
    color: #f39c12;
    margin-bottom: 10px;
}

.contact-link {
    color: #a8dadc;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #f39c12;
}

/* Footer */
footer {
    background: rgba(26, 26, 46, 0.95);
    border-top: 2px solid rgba(243, 156, 18, 0.3);
    padding: 40px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: #b2bec3;
    line-height: 2;
    text-decoration: none;
    display: block;
}

.footer-section a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #636e72;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        padding: 20px;
        gap: 10px;
    }

    .nav-menu.active {
        display: flex;
    }

    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}