body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #fffafc;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background: #ffe5ec;
    border-bottom: 1px solid #fadadd;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    font-weight: 600;
    font-size: 1.2rem;
    color: #d81b60;
}

.nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: 400;
}

.nav {
    display: flex;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #ffd1dc, #ffe5ec);
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #d81b60;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    background: #d81b60;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    transition: background 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    background: #ad1457;
}

/* About */
.about {
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.about-text h2 {
    margin-bottom: 20px;
    color: #d81b60;
}

.about-text p, .about-text ul {
    margin-bottom: 15px;
}

.about-text ul {
    list-style: disc;
    padding-left: 20px;
}

/* Advice, Reviews, Tests, Contact */
.advice, .reviews, .tests, .contact {
    padding: 60px 0;
}

.advice h2, .reviews h2, .tests h2, .contact h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #d81b60;
}

.advice-grid, .reviews-grid, .tests-grid {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: 1fr 1fr;
}

.card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    padding-bottom: 20px;
}

.card img {
    width: 100%;
    display: block;
    border-bottom: 1px solid #eee;
}

.card h3 {
    margin: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #d81b60;
}

.card p {
    margin: 0 20px 20px 20px;
}

.read-more {
    display: inline-block;
    margin-left: 20px;
    color: #d81b60;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Tests */
.tests p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.additional-resources {
    margin-top: 60px;
}

.additional-resources h3 {
    color: #d81b60;
    margin-bottom: 20px;
}

.additional-resources ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.additional-resources li {
    margin-bottom: 15px;
}

/* Contact */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

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

.contact-form {
    display: grid;
    grid-gap: 20px;
    margin-top: 30px;
    text-align: left;
}

.contact-form label {
    display: block;
    font-weight: 400;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
}

.contact-form button {
    background: #d81b60;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

/* Footer */
.footer {
    background: #ffe5ec;
    padding: 20px 0;
    text-align: center;
    color: #333;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        background: #ffe5ec;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        border-left: 1px solid #fadadd;
        padding: 10px;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        margin: 10px 0;
    }

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

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

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