/* ===== VARIABLES ===== */
:root {
    --color-primary: #4C5270;
    --color-accent: #FFB400;
    --color-background: #FAFAFA;
    --color-dark: #1E2022;
    --color-gray: #AAB2BD;
    --color-text: #555555;
    --color-primary-dark: #3a3f57;
    --color-bg-light: #f5f5f5;
    --font-main: 'Poppins', sans-serif;
    --font-headings: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

/* ===== BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 100px; /* Fix for anchored sections under fixed header */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-background);
    padding-top: 80px; /* Compensation for fixed header */
    background-image: url('./img/O3QRN1.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250, 250, 250, 0.92);
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

p {
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-primary);
}

.btn--outline:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn--small {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn--full {
    width: 100%;
    text-align: center;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.header__inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 180px;
}

.nav__list {
    display: flex;
}

.nav__item:not(:last-child) {
    margin-right: 20px;
}

.nav__link {
    font-weight: 500;
    padding: 5px;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.header__phone {
    font-weight: 700;
}

.header__phone a {
    color: var(--color-primary);
}

.header__phone a:hover {
    color: var(--color-accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: var(--color-primary);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(to right, rgba(30, 32, 34, 0.85), rgba(76, 82, 112, 0.7)), url('./img/gDV80e.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 7rem 1rem;
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero__buttons {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.hero__buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero__buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero .btn--outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero .btn--outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    z-index: -1;
    transition: width 0.4s ease;
}

.hero .btn--outline:hover {
    color: var(--color-primary);
}

.hero .btn--outline:hover::before {
    width: 100%;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 5rem 0;
}

.about__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about__image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.about__content {
    flex: 1;
    padding: 2rem;
    min-width: 300px;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 5rem 0;
    background-color: var(--color-bg-light);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card__image {
    height: 220px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.1);
}

.service-card__content {
    padding: 1.5rem;
    text-align: center;
}

.service-card__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-card__description {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card .btn--small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding-top: 100px; /* Additional padding for anchor target */
    margin-top: -80px; /* Offset to compensate for padding */
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card__header {
    padding: 2rem;
    text-align: center;
    background: var(--color-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.price-card__title {
    font-size: 1.5rem;
    color: white;
}

.price-card__price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.price-card__content {
    padding: 2rem;
}

.price-card__features {
    margin-bottom: 2rem;
}

.price-card__feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.price-card__feature::before {
    content: '✓';
    color: var(--color-accent);
    margin-right: 10px;
    font-weight: bold;
}

.price-card--featured {
    transform: scale(1.05);
}

.price-card--featured .price-card__header {
    background: var(--color-accent);
    color: var(--color-dark);
}

.price-card--featured .price-card__title {
    color: var(--color-dark);
}

.price-card--featured .price-card__badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-dark);
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    transform: translateX(30%) translateY(0) rotate(45deg);
    transform-origin: top left;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(76, 82, 112, 0.8) 100%);
    color: white;
    position: relative;
    z-index: 1;
    padding-top: 100px; /* Additional padding for anchor target */
    margin-top: -80px; /* Offset to compensate for padding */
}

.testimonials .section-title,
.testimonials .section-subtitle,
.testimonials .section-description {
    color: white;
}

.testimonials .section-title::after {
    background-color: var(--color-accent);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    margin-top: 40px;
}

.testimonial-card__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card__content {
    padding-top: 3rem;
    text-align: center;
}

.testimonial-card__text {
    color: var(--color-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card__name {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.testimonial-card__position {
    color: var(--color-gray);
    font-size: 0.875rem;
}

/* ===== FORM SECTION ===== */
.form-section {
    background: #f5f5f5;
    padding-top: 100px; /* Additional padding for anchor target */
    margin-top: -80px; /* Offset to compensate for padding */
}

.form-section .section-title {
    text-align: center;
}

.form-section .section-title h2 {
    display: inline-block;
    position: relative;
}

.form-section .section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

.form-section .section-title p {
    text-align: center;
    margin: 1rem auto 0;
    max-width: 600px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-image: linear-gradient(135deg, rgba(255, 180, 0, 0.1) 0%, rgba(76, 82, 112, 0.1) 100%);
    border: 1px solid rgba(76, 82, 112, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

.form-control {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid var(--color-gray);
    border-radius: 5px;
    background: white;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 82, 112, 0.2);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-check-input {
    margin-top: 0.25rem;
    margin-right: 10px;
}

.form-check-label {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.form-check-label a {
    text-decoration: underline;
    color: var(--color-primary);
}

/* ===== BLOG SECTION ===== */
.blog {
    padding-top: 100px; /* Additional padding for anchor target */
    margin-top: -80px; /* Offset to compensate for padding */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card__image {
    height: 200px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.1);
}

.blog-card__content {
    padding: 1.5rem;
}

.blog-card__date {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.blog-card__title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blog-card__excerpt {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.blog-card__link {
    font-weight: 500;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
}

.blog-card__link::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.blog-card__link:hover::after {
    margin-left: 10px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    position: relative;
    padding-top: 100px; /* Additional padding for anchor target */
    margin-top: -80px; /* Offset to compensate for padding */
}

.contact-info {
    margin-bottom: 3rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-info__item {
    display: flex;
    align-items: center;
    margin: 0;
    font-weight: 500;
    background: white;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 250px;
    transition: var(--transition);
    flex: 1;
    max-width: 350px;
}

.contact-info__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: var(--color-primary);
    color: white;
}

.contact-info__item:hover a {
    color: white;
}

.contact-info__item:hover svg {
    color: var(--color-accent);
}

.contact-info__item svg {
    margin-right: 15px;
    color: var(--color-accent);
    font-size: 24px;
    min-width: 24px;
}

.contact-map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    position: relative;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.contact-map:hover img {
    transform: scale(1.03);
}

.contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(76, 82, 112, 0.3) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 1;
    pointer-events: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-primary);
    color: white;
    padding: 5rem 0 2rem;
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.footer h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer__contact p {
    margin-bottom: 0.5rem;
}

.footer__contact a, .footer__links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer__contact a:hover, .footer__links a:hover {
    color: var(--color-accent);
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__about {
    color: rgba(255, 255, 255, 0.8);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: var(--transition);
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-popup__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-popup__content p {
    margin-bottom: 1rem;
    margin-right: 2rem;
}

.cookie-popup__buttons {
    display: flex;
    align-items: center;
}

.cookie-popup__link {
    margin-left: 1rem;
    font-size: 0.875rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about__inner {
        flex-direction: column;
    }
    
    .about__image {
        margin-bottom: 2rem;
    }
    
    .price-card--featured {
        transform: none;
    }
    
    .cookie-popup__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-popup__content p {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        padding: 100px 30px 30px;
        overflow-y: auto;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }
    
    .nav.show {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
    }
    
    .nav__item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .nav__link {
        display: block;
        padding: 10px 0;
        font-size: 1.2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
    
    .testimonials__grid,
    .services__grid,
    .pricing__grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .hero__buttons .btn {
        display: block;
        margin: 0 auto 1rem;
    }
    
    .hero__buttons .btn:first-child {
        margin-right: auto;
    }

    .services__grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .service-card__image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 8rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .contact-info__item {
        display: block;
        margin: 0 0 1.5rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===== POLICY PAGES UNIFIED STYLING ===== */
.policy {
    padding: 5rem 0;
}

.policy__content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy h1 {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--color-primary);
}

.policy h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

.policy__date {
    color: var(--color-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.policy__section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.policy__section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.policy__section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.policy__section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy__section li {
    margin-bottom: 0.5rem;
}

/* ===== ALERT MESSAGE ===== */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* ===== THANK YOU PAGE ===== */
.thank-you {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 0;
}

.thank-you__content {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.thank-you__icon {
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.thank-you h1 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.thank-you p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.thank-you .btn {
    margin-top: 2rem;
} 

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 3px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
} 