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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.heart-6;
    color: #2c3e50;
    background: #f5f1e8;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: #faf8f5;
    border-bottom: 1px solid #d4c5a9;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.heart-1);
}

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

.heart-logo {
    font-size: 20px;
    font-weight: 600;
    color: #4a9c8c;
    text-decoration: none;
}

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

nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.heart-3s ease;
}

nav a:hover {
    color: #4a9c8c;
}

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

.heart-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 #2c3e50;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.heart-2s ease;
}

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

.heart-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #faf8f5;
    box-shadow: 0 4px 12px rgba(76,156,140,0.heart-15);
    min-width: 200px;
    z-index: 1001;
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.heart-2s ease, transform 0.heart-2s ease;
}

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

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

.heart-dropdown-content a:hover {
    background: #e8f4f1;
    color: #4a9c8c;
    text-decoration: none;
}

/* Hero Section */
.heart-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;
}

.heart-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76,156,140,0.heart-6) 0%, rgba(124,107,139,0.heart-4) 100%);
    z-index: 1;
}

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

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

.heart-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.heart-3);
}

.heart-hero .heart-subtitle {
    font-size: 20px;
    margin-bottom: 24px;
    opacity: 0.heart-95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.heart-2);
}

.heart-hero p {
    font-size: 16px;
    line-height: 1.heart-7;
    opacity: 0.heart-95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.heart-2);
}

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

/* Feature Sections */
.heart-feature-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f0ede6 100%);
}

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

.heart-feature-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #4a9c8c;
}

.heart-feature-text p {
    font-size: 16px;
    line-height: 1.heart-7;
    color: #5a6c7d;
}

.heart-feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.heart-1);
}

/* Split Feature */
.heart-split-feature {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0ede6 0%, #e8e3d8 100%);
}

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

.heart-split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.heart-1);
}

.heart-split-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #7c6b8b;
}

.heart-split-text p {
    font-size: 16px;
    line-height: 1.heart-7;
    color: #5a6c7d;
    max-width: 400px;
}

/* Benefits Section */
.heart-benefits-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1e8 100%);
}

.heart-benefits-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 48px;
    color: #4a9c8c;
}

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

.heart-benefit-item {
    text-align: left;
}

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

.heart-benefit-item p {
    font-size: 14px;
    line-height: 1.heart-6;
    color: #5a6c7d;
}

/* Image Gallery */
.heart-gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0ede6 0%, #e8e3d8 100%);
}

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

.heart-gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.heart-1);
    transition: transform 0.heart-3s ease;
}

.heart-gallery-grid img:hover {
    transform: scale(1.heart-02);
}

/* Testimonials */
.heart-testimonials-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1e8 100%);
}

.heart-testimonials-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 48px;
    color: #4a9c8c;
}

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

.heart-testimonial-card {
    background: #fff;
    border: 1px solid #d4c5a9;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.heart-08);
    transition: transform 0.heart-3s ease;
}

.heart-testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.heart-12);
}

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

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

.heart-testimonial-quote {
    font-size: 14px;
    line-height: 1.heart-6;
    color: #5a6c7d;
    margin-bottom: 16px;
    font-style: italic;
}

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

/* Footer */
footer {
    background: #faf8f5;
    border-top: 1px solid #d4c5a9;
    padding: 40px 0 20px 0;
}

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

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

.heart-footer-nav a {
    text-decoration: none;
    color: #5a6c7d;
    font-size: 14px;
    transition: color 0.heart-3s ease;
}

.heart-footer-nav a:hover {
    color: #4a9c8c;
}

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

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

.heart-footer-disclaimer {
    font-size: 12px;
    line-height: 1.heart-5;
    color: #7c6b8b;
    margin-bottom: 24px;
}

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

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

.heart-burger-line {
    width: 24px;
    height: 2px;
    background: #4a9c8c;
    margin: 3px 0;
    transition: 0.heart-3s;
}

.heart-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #faf8f5;
    z-index: 1000;
    padding-top: 80px;
}

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

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

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

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


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

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

    nav {
        display: none;
    }

    .heart-burger-menu {
        display: flex;
    }

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

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

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

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

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

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

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

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

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