body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #222;
    margin: 0;
    padding: 0;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, .nav-link:hover, .footer-link:hover{
    color: #ff0043;
}
.container {
    max-width: 1100px;
    margin:0 auto;
    padding: 0 20px;
}
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 24px;
}
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}
.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: #222;
    padding: 8px 0;
}
.options select {
    border: none;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 1rem;
    margin-left: 16px;
    color: #222;
}
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: #ff0043;
    cursor: pointer;
}
.hero {
    padding: 64px 0 48px 0;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.hero-content {
    max-width: 600px;
}
.hero-title {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
}
.hero-description {
    font-size: 1.15rem;
    margin-bottom: 32px;
    color: #555;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}
.search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 6px 12px;
    margin-top: 18px;
    width: 350px;
    max-width: 100%;
    gap: 8px; 
}
.search:focus-within {
    border-bottom-color: #ff0043;
}
.search-icon {
    color: #a7acb0;
    margin-right: 10px;
    font-size: 1.1rem;
}
.form-control {
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    flex: 1;
    color: #222;
}
.search-button {
    background: transparent;
    border: none;
    color:#646161;
    padding: 6px 14px;
    cursor: pointer;
    font-weight: 500;
}
.hero-buttons {
    display: flex;
    gap: 12px;
}
.btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-primary {
    background: #ff0043;
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: #ff0043;
    border: 2px solid #ff0043;
}
.btn-primary:hover,
.btn-outline:hover {
    background: #d30038;
    color: #fff;
    border-color: #d30038;
}
.mobile-menu-btn {
    display: none;
    font-size: 1rem;
    color: #d30038;
    cursor: pointer;
}
.features {
    padding: 64px 0 48px 0;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #222;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}
.feature-card:hover {
    box-shadow: 0 4px 16px rgba(37,99,235,0.08);
}
.feature-icon {
    font-size: 2.5rem;
    color: #ff0043;
}
.feature-title {
    font-size: 1.18rem;
    font-weight: 900;
    margin-bottom: 10px;
}
.feature-description {
    color: #555;
    font-size: 1rem;
}
.testimonials {
    padding: 64px 0 48px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    min-height: 220px;
}
.testimonial-text h3 {
    color: #ff0043;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.testimonial-text {
    color: #444;
    font-size: 1rem;
}
.content-section {
    padding: 64px 0 48px 0;
}
.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.content-image img {
    width: 254px;
    height: 428px;
    object-fit: contain;
    display: block;
}
.content {
    max-width: 500px;
}
.content-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}
.content-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}
footer {
    background: #f1f5f9;
    padding: 40px 0 20px 0;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    display: flex;
    gap: 24px;
    padding: 0;
    margin: 0;
}
.footer-link {
    color: #222;
    font-weight: 500;
    font-size: 1rem;
}
.contact-icons a {
    color: #ff0043;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color 0.2s;
}
.contact-icons a:hover {
    color: #ff0043;
}
.copyright {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
}
@media (max-width: 1100px) {
    .features-grid, .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .content-container {
        flex-direction: column;
        text-align: center;
    }
    .content-image {
        margin-bottom: 24px;
    }
}
@media (max-width: 700px) {
    .features-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .header-container, .footer-grid {
        flex-direction: column;
        gap: 20px;
    }
    .hero-container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .hero-image img {
        margin: 0 auto;
    }
    .search {
        width: 100%;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
}
@media (max-width: 500px) {
    .container {
        padding: 0 8px;
    }
    .btn, .btn-primary, .btn-outline {
        width: 100%;
        box-sizing: border-box;
    }
}
