/* Base Styles */
:root {
    --primary-color: #2c5d73;
    --secondary-color: #1d3f36;
    --accent-color: #4d908e;
    --light-color: #f8f9fa;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --font-primary: 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: Georgia, serif;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-100);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--gray-900);
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 4rem 0;
}

/* Button Styles */
.btn-primary, 
.btn-secondary, 
.btn-submit,
.btn-blog {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: white;
    width: 100%;
    font-size: 1rem;
}

.btn-submit:hover {
    background-color: var(--primary-color);
}

.btn-blog {
    background-color: var(--gray-200);
    color: var(--gray-800);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.btn-blog:hover {
    background-color: var(--gray-300);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: white;
    padding: 5rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    box-shadow: var(--box-shadow);
    border-radius: 8px;
    overflow: hidden;
}

/* Features Section */
.features {
    background-color: var(--gray-100);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    background-color: var(--gray-100);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* CTA Letter Section */
.cta-letter {
    background-color: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-letter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.png');
    opacity: 0.1;
}

.letter-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.letter-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.letter-content p {
    margin-bottom: 1rem;
}

.letter-content .btn-secondary {
    border-color: white;
    color: white;
    margin-top: 1.5rem;
}

.letter-content .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Recent Posts Section */
.recent-posts {
    background-color: white;
}

.recent-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    background-color: var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
}

.post-card p {
    padding: 0 1.5rem 1rem;
    color: var(--gray-600);
}

.read-more {
    display: inline-block;
    padding: 0 1.5rem 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

.view-all a {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.view-all a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: right;
}

.view-all a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Footer Styles */
footer {
    background-color: var(--gray-800);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-about .footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-about p {
    font-size: 0.9rem;
}

.company-info {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4,
.footer-social h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a,
.footer-legal ul li a {
    color: var(--gray-400);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: white;
}

.footer-contact address {
    font-style: normal;
    font-size: 0.9rem;
}

.footer-contact address p {
    margin-bottom: 0.5rem;
}

.footer-contact address a {
    color: var(--gray-400);
}

.footer-contact address a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-700);
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 37, 41, 0.95);
    color: white;
    z-index: 1000;
    padding: 1rem;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-customize,
.btn-cookie-decline {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: white;
}

.btn-cookie-accept:hover {
    background-color: var(--secondary-color);
}

.btn-cookie-customize {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-cookie-customize:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-cookie-decline {
    background-color: var(--gray-600);
    color: white;
}

.btn-cookie-decline:hover {
    background-color: var(--gray-700);
}

.cookie-policy {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-policy a {
    color: var(--gray-300);
    text-decoration: underline;
}

.cookie-policy a:hover {
    color: white;
}

/* Blog Page Styles */
.page-header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-content {
    background-color: var(--gray-100);
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-card {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog-image {
    flex: 0 0 300px;
}

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

.blog-details {
    flex: 1;
    padding: 2rem;
}

.blog-date {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.blog-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-details p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.btn-blog {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-blog:hover {
    background-color: var(--secondary-color);
}

/* Blog Post Styles */
.post-header {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0 3rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.post-date, .post-category {
    font-size: 0.9rem;
}

.post-header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.post-content {
    background-color: white;
    padding: 0;
}

.post-featured-image {
    height: 500px;
    overflow: hidden;
}

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

article {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.post-intro {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
}

article h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

article h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

article p {
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

article ul, article ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

article ul li, article ol li {
    margin-bottom: 0.5rem;
}

article ul {
    list-style: disc;
}

.post-tags {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-300);
}

.post-tags span {
    font-weight: 600;
    margin-right: 1rem;
}

.post-tags a {
    display: inline-block;
    background-color: var(--gray-200);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--gray-300);
}

.post-share {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
}

.post-share span {
    font-weight: 600;
    margin-right: 1rem;
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-200);
    color: var(--gray-700);
    margin-right: 0.5rem;
    transition: var(--transition);
}

.post-share a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    border-top: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
}

.nav-previous, .nav-next {
    max-width: 45%;
}

.nav-previous span, .nav-next span {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.nav-previous a, .nav-next a {
    font-weight: 600;
    color: var(--gray-800);
    transition: var(--transition);
}

.nav-previous a:hover, .nav-next a:hover {
    color: var(--primary-color);
}

.nav-next {
    text-align: right;
}

.related-posts {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-card {
    background-color: var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card h4 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
}

.related-card a {
    display: inline-block;
    padding: 0 1rem 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* About Page Styles */
.about-content {
    background-color: white;
}

.about-story, 
.about-values, 
.about-team, 
.about-approach, 
.about-testimonials {
    margin-bottom: 5rem;
}

.about-story h2, 
.about-values h2, 
.about-team h2, 
.about-approach h2, 
.about-testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.about-story p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3, 
.team-member p {
    padding: 0 1.5rem;
}

.team-member h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
}

.team-member p:first-of-type {
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p:last-of-type {
    color: var(--gray-700);
    font-size: 0.95rem;
    padding-bottom: 1.5rem;
}

.approach-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.approach-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.approach-text {
    flex: 1;
}

.approach-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.approach-text ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.approach-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: var(--primary-color);
}

.testimonial-card p {
    margin-top: 2rem;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.testimonial-author p {
    margin: 0;
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--gray-200);
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-content {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info h2,
.contact-form-container h2,
.office-map h2 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.info-card {
    display: flex;
    margin-bottom: 2rem;
}

.info-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 1rem;
}

.info-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.info-details p {
    margin-bottom: 0.25rem;
    color: var(--gray-700);
}

.social-connect {
    margin-top: 3rem;
}

.social-connect h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-form-container {
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-weight: 400;
}

.office-map {
    margin-top: 4rem;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.map-details {
    max-width: 800px;
    margin: 0 auto;
}

.map-details p {
    margin-bottom: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--box-shadow);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
}

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.thank-you-message h2 {
    margin-bottom: 1rem;
}

.thank-you-message p {
    margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image {
        flex: none;
        height: 200px;
    }
    
    .approach-content {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-previous, .nav-next {
        max-width: 100%;
    }
    
    .nav-next {
        text-align: left;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 0.75rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}
