* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #2A2A2A;
    background: linear-gradient(135deg, #FEFEFE 0%, #FAFAFA 100%);
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 127, 127, 0.2);
    box-shadow: 0 2px 20px rgba(127, 191, 255, 0.1);
    z-index: 1000;
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #2A2A2A;
    text-decoration: none;
    background: linear-gradient(135deg, #FF7F7F 0%, #B77FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #FF7F7F;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7FBFFF 0%, #B77FFF 100%);
    transition: width 0.3s ease;
}

nav a:hover::before {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #666;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(127, 191, 255, 0.15);
    min-width: 200px;
    z-index: 1001;
    border-radius: 12px;
    padding: 12px 0;
    border: 1px solid rgba(255, 127, 127, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 8px 16px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    text-decoration: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 75vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(183, 127, 255, 0.3) 0%, rgba(127, 191, 255, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #fff;
    max-width: 600px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero .subtitle {
    font-size: 20px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

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

/* Feature Sections */
.feature-section {
    padding: 80px 0;
    position: relative;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 127, 127, 0.3) 50%, transparent 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2A2A2A;
    background: linear-gradient(135deg, #FF7F7F 0%, #7FBFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(127, 191, 255, 0.15);
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: translateY(-4px);
}

/* Split Feature */
.split-feature {
    padding: 80px 0;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(183, 127, 255, 0.2);
    transition: transform 0.3s ease;
}

.split-image img:hover {
    transform: scale(1.02);
}

.split-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #2A2A2A;
    background: linear-gradient(135deg, #B77FFF 0%, #FF7F7F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.split-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    max-width: 400px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    text-align: center;
}

.benefits-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 48px;
    color: #2A2A2A;
    background: linear-gradient(135deg, #7FBFFF 0%, #B77FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: left;
    background: rgba(254, 254, 254, 0.8);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 127, 127, 0.1);
    box-shadow: 0 4px 16px rgba(127, 191, 255, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(183, 127, 255, 0.15);
}

.benefit-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2A2A2A;
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Pricing Styles */
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 127, 127, 0.1);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2A2A2A;
}

.price-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Contact Info Styles */
.contact-info {
    background: rgba(254, 254, 254, 0.8);
    padding: 24px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(255, 127, 127, 0.1);
}

.contact-info p {
    margin: 8px 0;
    font-size: 16px;
    color: #2A2A2A;
}

.contact-info strong {
    color: #FF7F7F;
}

/* Image Gallery */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(127, 191, 255, 0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 48px;
    color: #2A2A2A;
    background: linear-gradient(135deg, #FF7F7F 0%, #7FBFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background: rgba(254, 254, 254, 0.9);
    border: 1px solid rgba(255, 127, 127, 0.2);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(183, 127, 255, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(127, 191, 255, 0.2);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.testimonial-stars span {
    color: #ffd700;
    font-size: 16px;
}

.testimonial-quote {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(127, 191, 255, 0.05) 0%, rgba(183, 127, 255, 0.05) 100%);
    border-top: 1px solid rgba(255, 127, 127, 0.2);
    padding: 40px 0 20px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-nav a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: text-decoration 0.3s ease;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-legal a {
    text-decoration: none;
    color: #666;
    font-size: 12px;
}

.footer-disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 24px;
}

.copyright {
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.burger-line {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #FF7F7F 0%, #B77FFF 100%);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding-top: 80px;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0 20px;
}

.mobile-menu li {
    margin-bottom: 16px;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}


.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

/* Terms and Conditions Styles */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #333;
}

.terms-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    background: linear-gradient(135deg, #FF7F7F 0%, #7FBFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-last-revised {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.terms-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 16px 0;
    color: #2A2A2A;
    border-bottom: 2px solid rgba(255, 127, 127, 0.3);
    padding-bottom: 8px;
}

.terms-section {
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(254, 254, 254, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 127, 127, 0.1);
    box-shadow: 0 4px 16px rgba(127, 191, 255, 0.1);
}

.terms-section p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-section strong {
    color: #FF7F7F;
}

.terms-section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.terms-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.terms-section li:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        padding: 12px 20px;
    }

    nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    .feature-grid,
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 200px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-direction: column;
        gap: 16px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}