:root {
    --primary-color: #e94e77;
    --secondary-color: #333;
    --light-bg: #fdf3f4;
    --white: #fff;
    --gray: #f5f5f5;
    --dark-gray: #444;
    --text-color: #2d2d2d;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Navigation */
header {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--light-bg);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-image {
    width: 45%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #d23d66;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.features-description {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-image {
    height: 200px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 25px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-text {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-list {
    margin: 15px 0;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s;
}

.text-link:hover {
    color: #d23d66;
}

/* Why Us Section */
.why-us {
    background-color: var(--white);
    padding: 80px 20px;
}

.why-us-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-points {
    margin: 30px 0;
}

.why-us-point {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.why-us-point:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Models Section */
.models {
    padding: 80px 20px;
    background-color: var(--gray);
}

.models-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.models-text {
    flex: 1;
    min-width: 300px;
}

.models-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.models-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.models-list {
    margin: 20px 0;
}

.models-list-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.models-list-item {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.models-list-item:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Reviews Section */
.reviews {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.review-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    height: 100%;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.reviewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: #ffb900;
    margin-bottom: 10px;
}

.review-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.reviewer-details {
    font-size: 0.8rem;
    color: var(--dark-gray);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-subtitle {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 30px 20px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--white);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-info {
    text-align: center;
    font-size: 14px;
    color: #999;
}

.footer-address {
    margin-bottom: 15px;
}

.copyright {
    margin-top: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    width: 90%;
    max-width: 500px;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: relative;
}

.cookie-icon:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    top: 5px;
    left: 5px;
}

.cookie-icon:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    top: 15px;
    left: 15px;
}

.cookie-text {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-manage {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
    }

    .hero-image,
    .hero-text {
        width: 100%;
    }

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

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

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 20px;
    }

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