
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #f70025;
            --cream: #f7efe2;
            --orange: #f25c00;
            --yellow: #f9a603;
            --text-dark: #2c2c2c;
            --text-light: #666;
            --white: #ffffff;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        
        .header {
            background-color: var(--white);
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header__container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header__logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-red);
            text-decoration: none;
        }

        .header__nav {
            display: flex;
        }

        .header__nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .header__nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .header__nav-link:hover {
            color: var(--primary-red);
        }

        .header__burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .header__burger-line {
            width: 25px;
            height: 3px;
            background-color: var(--text-dark);
            transition: 0.3s;
        }

        .header__burger--active .header__burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .header__burger--active .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger--active .header__burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        
        .hero {
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
            padding: 4rem 0;
            text-align: center;
        }

        .hero__title {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .hero__subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero__image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        
        .statistics {
            padding: 4rem 0;
            background-color: var(--cream);
        }

        .statistics__title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 3rem;
        }

        .statistics__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .statistics__item {
            text-align: center;
            padding: 2rem;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .statistics__number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--orange);
            display: block;
            margin-bottom: 0.5rem;
        }

        .statistics__label {
            font-size: 1.1rem;
            color: var(--text-dark);
            font-weight: 500;
        }

        
        .about {
            padding: 4rem 0;
        }

        .about__title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 3rem;
        }

        .about__content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about__text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .about__text p {
            margin-bottom: 1.5rem;
        }

        .about__features {
            list-style: none;
        }

        .about__features-item {
            padding: 1rem;
            margin-bottom: 1rem;
            background-color: var(--cream);
            border-left: 4px solid var(--orange);
            border-radius: 4px;
        }

        
        .services {
            padding: 4rem 0;
            background-color: var(--cream);
        }

        .services__title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 3rem;
        }

        .services__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .services__card {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .services__card:hover {
            transform: translateY(-5px);
        }

        .services__card-icon {
            font-size: 3rem;
            color: var(--yellow);
            margin-bottom: 1rem;
        }

        .services__card-title {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .services__card-text {
            color: var(--text-light);
            line-height: 1.6;
        }

        
        .why-choose {
            padding: 4rem 0;
        }

        .why-choose__title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 3rem;
        }

        .why-choose__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .why-choose__item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background-color: var(--cream);
            border-radius: 8px;
        }

        .why-choose__icon {
            font-size: 2rem;
            color: var(--orange);
            margin-top: 0.5rem;
        }

        .why-choose__content h3 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .why-choose__content p {
            color: var(--text-light);
            line-height: 1.6;
        }

        
        .how-we-work {
            padding: 4rem 0;
            background-color: var(--cream);
        }

        .how-we-work__title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 3rem;
        }

        .how-we-work__steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .how-we-work__step {
            text-align: center;
            padding: 2rem;
            background-color: var(--white);
            border-radius: 8px;
            position: relative;
        }

        .how-we-work__step-number {
            width: 60px;
            height: 60px;
            background-color: var(--yellow);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .how-we-work__step-title {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .how-we-work__step-text {
            color: var(--text-light);
            line-height: 1.6;
        }

        
        .testimonials {
            padding: 4rem 0;
        }

        .testimonials__title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 3rem;
        }

        .testimonials__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonials__card {
            background-color: var(--cream);
            padding: 2rem;
            border-radius: 8px;
            position: relative;
        }

        .testimonials__quote {
            font-size: 1.1rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonials__quote::before {
            content: '"';
            font-size: 3rem;
            color: var(--orange);
            position: absolute;
            top: 1rem;
            left: 1rem;
        }

        .testimonials__author {
            font-weight: bold;
            color: var(--text-dark);
        }

        .testimonials__author-title {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        
        .footer {
            background-color: var(--text-dark);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer__content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer__section h3 {
            color: var(--primary-red);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .footer__section a{
            color: white;
        }
        .footer__links {
            list-style: none;
        }

        .footer__links li {
            margin-bottom: 0.5rem;
        }

        .footer__links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer__links a:hover {
            color: var(--primary-red);
        }

        .footer__bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: var(--text-light);
        }

        
        @media (max-width: 768px) {
            .header__nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--white);
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                flex-direction: column;
                padding: 1rem;
            }

            .header__nav--active {
                display: flex;
            }

            .header__nav-list {
                flex-direction: column;
                gap: 1rem;
            }

            .header__burger {
                display: flex;
            }

            .hero__title {
                font-size: 2rem;
            }

            .hero__subtitle {
                font-size: 1.1rem;
            }

            .about__content {
                grid-template-columns: 1fr;
            }

            .statistics__title,
            .about__title,
            .services__title,
            .why-choose__title,
            .how-we-work__title,
            .testimonials__title {
                font-size: 2rem;
            }
        }
        .history {
    padding: 4rem 0;
    background-color: var(--white);
}

.history__container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.history__timeline {
    position: relative;
    padding-left: 2rem;
}

.history__timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-red), var(--orange), var(--yellow));
    border-radius: 2px;
}

.history__year {
    position: relative;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--cream);
    border-radius: 8px;
}

.history__year::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 1.5rem;
    width: 12px;
    height: 12px;
    background-color: var(--primary-red);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.history__year-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.history__content {
    padding-left: 2rem;
}

.history__title {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
}

.history__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}


.team {
    padding: 4rem 0;
    background-color: var(--cream);
}

.team__title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.team__member {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team__member:hover {
    transform: translateY(-5px);
}

.team__member-initial {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.team__member-name {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.team__member-title {
    color: var(--primary-red);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team__member-bio {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}


.values {
    padding: 4rem 0;
    background-color: var(--white);
}

.values__title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

.values__intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.values__item {
    position: relative;
    padding: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.values__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--orange));
}

.values__item:nth-child(2)::before {
    background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.values__item:nth-child(3)::before {
    background: linear-gradient(90deg, var(--yellow), var(--primary-red));
}

.values__item-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--cream);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.values__item-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.values__item-text {
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}


@media (max-width: 768px) {
    .history__container {
        grid-template-columns: 1fr;
    }
    
    .history__content {
        padding-left: 0;
        order: -1;
    }
    
    .history__timeline {
        padding-left: 1.5rem;
    }
    
    .team__grid {
        grid-template-columns: 1fr;
    }
    
    .values__grid {
        grid-template-columns: 1fr;
    }
    
    .history__title,
    .team__title,
    .values__title {
        font-size: 2rem;
    }
}
* Servis Paketleri Bölümü */
.service-packages {
    padding: 4rem 0;
    background-color: var(--white);
}

.service-packages__title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

.service-packages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-packages__card {
    background-color: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-packages__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-packages__header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.service-packages__card:nth-child(1) .service-packages__header {
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.service-packages__card:nth-child(2) .service-packages__header {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: var(--white);
}

.service-packages__card:nth-child(3) .service-packages__header {
    background: linear-gradient(135deg, var(--primary-red), var(--orange));
    color: var(--white);
}

.service-packages__name {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.service-packages__price {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.service-packages__period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.service-packages__body {
    padding: 1.5rem 2rem 2rem;
    background-color: var(--white);
}

.service-packages__features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-packages__feature {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream);
    position: relative;
    padding-left: 1.5rem;
}

.service-packages__feature::before {
    content: '✓';
    color: var(--orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-packages__button {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-packages__button:hover {
    background-color: var(--orange);
}

.service-packages__card:nth-child(2) .service-packages__button {
    background-color: var(--orange);
}

.service-packages__card:nth-child(2) .service-packages__button:hover {
    background-color: var(--primary-red);
}


.order-process {
    padding: 4rem 0;
    background-color: var(--cream);
}

.order-process__title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

.order-process__container {
    max-width: 1000px;
    margin: 0 auto;
}

.order-process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    position: relative;
}

.order-process__step {
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.order-process__step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -0.5rem;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--orange);
    transform: translateY(-50%);
}

.order-process__step:last-child::after {
    display: none;
}

.order-process__step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.order-process__step-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: bold;
}

.order-process__step-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.order-process__note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
}

.order-process__note-title {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: bold;
}

.order-process__note-text {
    color: var(--text-light);
    line-height: 1.6;
}


.additional-services {
    padding: 4rem 0;
    background-color: var(--white);
}

.additional-services__title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

.additional-services__intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.additional-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.additional-services__item {
    border: 2px solid var(--cream);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.additional-services__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.additional-services__item:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
}

.additional-services__item:hover::before {
    transform: scaleX(1);
}

.additional-services__item:nth-child(2n)::before {
    background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.additional-services__item:nth-child(3n)::before {
    background: linear-gradient(90deg, var(--yellow), var(--primary-red));
}

.additional-services__item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.additional-services__item-icon {
    width: 50px;
    height: 50px;
    background-color: var(--cream);
    color: var(--primary-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.additional-services__item-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: bold;
}

.additional-services__item-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.additional-services__item-price {
    font-size: 1.2rem;
    color: var(--orange);
    font-weight: bold;
}


@media (max-width: 768px) {
    .service-packages__grid {
        grid-template-columns: 1fr;
    }
    
    .order-process__steps {
        grid-template-columns: 1fr;
    }
    
    .order-process__step::after {
        display: none;
    }
    
    .additional-services__grid {
        grid-template-columns: 1fr;
    }
    
    .service-packages__title,
    .order-process__title,
    .additional-services__title {
        font-size: 2rem;
    }
}

.latest-posts {
    padding: 4rem 0;
    background-color: var(--white);
}

.latest-posts__title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

.latest-posts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.latest-posts__article {
    background-color: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-posts__article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.latest-posts__image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.latest-posts__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-posts__article:hover .latest-posts__image {
    transform: scale(1.05);
}

.latest-posts__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.latest-posts__date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255,255,255,0.9);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.latest-posts__content {
    padding: 2rem;
}

.latest-posts__article-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.3;
}

.latest-posts__article-title:hover {
    color: var(--primary-red);
    cursor: pointer;
}

.latest-posts__excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.latest-posts__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.latest-posts__author {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.latest-posts__read-more {
    color: var(--orange);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.latest-posts__read-more:hover {
    color: var(--primary-red);
}


.popular-categories {
    padding: 4rem 0;
    background-color: var(--cream);
}

.popular-categories__title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
}

.popular-categories__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.popular-categories__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.popular-categories__featured {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.popular-categories__featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.popular-categories__featured-content {
    padding: 2rem;
}

.popular-categories__featured-category {
    background-color: var(--orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.popular-categories__featured-title {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.3;
}

.popular-categories__featured-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popular-categories__featured-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.popular-categories__featured-link:hover {
    color: var(--orange);
}

.popular-categories__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-categories__item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-red);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.popular-categories__item:hover {
    transform: translateX(5px);
    border-color: var(--orange);
}

.popular-categories__item:nth-child(2) {
    border-left-color: var(--orange);
}

.popular-categories__item:nth-child(3) {
    border-left-color: var(--yellow);
}

.popular-categories__item:nth-child(4) {
    border-left-color: var(--primary-red);
}

.popular-categories__item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.popular-categories__item-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: bold;
}

.popular-categories__item-count {
    background-color: var(--cream);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.popular-categories__item-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}


@media (max-width: 768px) {
    .latest-posts__grid {
        grid-template-columns: 1fr;
    }
    
    .popular-categories__container {
        grid-template-columns: 1fr;
    }
    
    .latest-posts__title,
    .popular-categories__title {
        font-size: 2rem;
    }
    
    .latest-posts__image-container {
        height: 200px;
    }
    
    .popular-categories__featured-image {
        height: 250px;
    }
}

.newsletter-signup {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-signup__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-signup__content {
    padding: 2rem;
}

.newsletter-signup__title {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.3;
}

.newsletter-signup__subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-signup__benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.newsletter-signup__benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.newsletter-signup__benefit-icon {
    width: 20px;
    height: 20px;
    background-color: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.newsletter-signup__form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-red);
}

.newsletter-signup__form-group {
    margin-bottom: 1.5rem;
}

.newsletter-signup__label {
    display: block;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.newsletter-signup__input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--cream);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-signup__input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242, 92, 0, 0.1);
}

.newsletter-signup__checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.newsletter-signup__checkbox {
    margin-top: 0.2rem;
}

.newsletter-signup__checkbox-label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-light);
}

.newsletter-signup__submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-red), var(--orange));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-signup__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 0, 37, 0.3);
}

.newsletter-signup__submit:active {
    transform: translateY(0);
}

.newsletter-signup__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-signup__image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.newsletter-signup__image:hover {
    transform: scale(1.05);
}


.newsletter-notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.4s ease;
    max-width: 350px;
}

.newsletter-notification.show {
    transform: translateX(0);
}

.newsletter-notification__title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.newsletter-notification__text {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.newsletter-notification__close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.newsletter-notification__close:hover {
    opacity: 1;
}


@media (max-width: 768px) {
    .newsletter-signup__container {
        grid-template-columns: 1fr;
    }
    
    .newsletter-signup__title {
        font-size: 1.8rem;
    }
    
    .newsletter-signup__images {
        grid-template-columns: 1fr;
    }
    
    .newsletter-signup__image {
        height: 120px;
    }
    
    .newsletter-notification {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}