/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2A63FF;
    --secondary-color: #0A3D91;
    --dark-color: #333;
    --light-color: #f9fbff;
    --success-color: #0A7EEB;
    --danger-color: #dc3545;
    --text-color: #444;
    --border-radius: 4px;
    --box-shadow: 0 5px 15px rgba(42, 99, 255, 0.1);
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --heading-font: 'Arvo', serif;
    --body-font: 'DM Sans', sans-serif;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.6rem;
    text-align: center;
}

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

.section-heading {
    text-align: center;
    margin-bottom: 6rem;
}

.section-heading h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1rem;
    width: 5rem;
    height: 0.3rem;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.section-heading p {
    max-width: 60rem;
    margin: 0 auto;
    color: #777;
}

/* Header & Navigation */
.sticky-header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

.logo img {
    height: 8rem;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    height: 4.6rem; /* Match button height */
}

.nav-menu li {
    margin: 0 1.5rem;
    display: flex;
    align-items: center;
}

.nav-menu .cta-button {
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
}

.nav-menu li a {
    font-weight: 500;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 0.2rem;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown .dropdown-menu li {
    margin: 0;
    width: 100%;
}

.nav-menu .dropdown .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    color: var(--text-color);
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 0;
}

.nav-menu .dropdown .dropdown-menu li a i {
    color: var(--primary-color);
    font-size: 1.4rem;
    width: 1.6rem;
    text-align: center;
}

.nav-menu .dropdown .dropdown-menu li a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 2.5rem;
}

.nav-menu .dropdown .dropdown-menu li a::after {
    display: none;
}

.nav-menu .dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu .dropdown > a .dropdown-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-menu .cta-button {
    height: 4.6rem; /* Fixed height for container */
}

.nav-menu .cta-button a {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0 2rem;
    height: 4.6rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    box-sizing: border-box;
}

.nav-menu .cta-button a:hover {
    background-color: var(--secondary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 99, 255, 0.3);
}

.nav-menu .cta-button a::after {
    display: none;
}

/* Both buttons should be same color for better UI consistency */
.nav-menu .cta-button .button,
.nav-menu .cta-button .whatsapp-button {
    background-color: var(--primary-color);
}

.nav-menu .cta-button .button:hover,
.nav-menu .cta-button .whatsapp-button:hover {
    background-color: var(--secondary-color);
}

.nav-menu .cta-button a i {
    font-size: 1.6rem;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 2.5rem;
    height: 0.3rem;
    margin: 0.5rem auto;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Banner Section */
.banner {
    background-color: var(--light-color);
    padding-top: 15rem;
    padding-bottom: 8rem;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner .text-content {
    flex: 1;
    max-width: 55rem;
}

.banner h1 {
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.banner p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #666;
}

.subscribe-form {
    display: flex;
    margin-top: 3rem;
}

.subscribe-form input {
    flex: 1;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: var(--body-font);
    font-size: 1.6rem;
}

.subscribe-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 2.5rem;
}

.banner-image {
    flex: 1;
    text-align: right;
}

.banner-image img {
    max-width: 100%;
}

/* Services Section */
.services {
    background-color: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    font-size: 3.6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.service-card h3 {
    margin-bottom: 1.5rem;
}

.service-card p {
    color: #777;
    margin-bottom: 2rem;
}

.service-card .learn-more {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    margin-top: 1rem;
    text-decoration: none;
}

.service-card .learn-more:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Service Card Coming Soon Tag */
.coming-soon-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    z-index: 2;
}

/* Customer Support Section */
.customer-support {
    background-color: var(--light-color);
}

.support-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-image {
    flex: 1;
}

.customer-support .text-content {
    flex: 1;
    padding-left: 5rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    margin-top: 2rem;
}

.whatsapp-button:hover {
    background-color: var(--secondary-color);
    color: white;
}

.whatsapp-button i {
    font-size: 2rem;
    margin-right: 1rem;
}

/* Pricing Section */
.pricing {
    background-color: white;
}

.pricing-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2rem; /* Space for scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

.pricing-grid::-webkit-scrollbar {
    height: 8px;
}

.pricing-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.pricing-grid::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem 2rem 2rem;
    flex: 0 0 auto;
    width: 24%;
    min-width: 24rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: auto; /* Let the content determine the height */
    min-height: 45rem; /* Minimum height for consistency */
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.professional {
    border-top: 5px solid var(--primary-color);
    z-index: 1;
}

.pricing-card .tag {
    display: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    min-height: 8rem; /* Ensure consistent header height */
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.price .price-amount {
    font-size: 2.6rem;
    color: var(--primary-color);
    font-weight: 800;
}

.price span {
    font-size: 1.6rem;
    color: #777;
}

.price-note {
    font-size: 1.2rem;
    color: #777;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.price-note .price-amount {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 700;
}

.features {
    margin-bottom: 2rem;
    flex-grow: 1; /* This will make the features section take up all available space */
    height: auto; /* Remove fixed height */
    overflow-y: visible; /* Remove scrolling */
}

/* Remove scrollbar styles */
.features::-webkit-scrollbar {
    display: none;
}

.features::-webkit-scrollbar-track {
    display: none;
}

.features::-webkit-scrollbar-thumb {
    display: none;
}

.features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.3rem;
    white-space: normal; /* Allow text to wrap */
    line-height: 1.4;
}

.features li:last-child {
    border-bottom: none;
}

.features i {
    color: var(--success-color);
    margin-right: 1rem;
}

.pricing-card button {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    margin-top: auto;
}

.pricing-note {
    text-align: center;
    color: #777;
    font-size: 1.3rem;
    margin-top: 2rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    margin-bottom: 0.5rem;
}

/* Authorities Section */
.authorities {
    background-color: #f9f9f9;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 4rem;
    align-items: center;
}

.logo-item {
    text-align: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Support Section */
.support-section {
    background-color: white;
}

.support-section .support-content {
    flex-direction: row-reverse;
}

.support-section .text-content {
    padding-right: 5rem;
    padding-left: 0;
}

/* News Section */
.news {
    background-color: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.news-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.news-image {
    height: 20rem;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 2rem;
}

.date {
    font-size: 1.4rem;
    color: #777;
    margin-bottom: 1rem;
}

.news-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1rem;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Reviews Section */
.reviews {
    background-color: var(--light-color);
    padding: 8rem 0;
}

.reviews-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
}

.reviews-image {
    flex: 0 0 40%;
    text-align: center;
}

.reviews-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 600px; /* Limit height to ensure it fits well */
    object-fit: contain;
}

.reviews-grid {
    flex: 0 0 55%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

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

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 99, 255, 0.15);
}

.rating {
    margin-bottom: 1.5rem;
}

.rating i {
    color: #FFD700;
    font-size: 1.8rem;
    margin-right: 0.2rem;
}

.review-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.reviewer {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.reviewer-info p {
    color: #777;
    margin-bottom: 0;
    font-size: 1.4rem;
}

@media (max-width: 992px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }
    
    .reviews-image {
        flex: 0 0 100%;
        margin-bottom: 4rem;
        max-width: 400px; /* Limit width on medium screens */
    }
    
    .reviews-grid {
        flex: 0 0 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-image {
        max-width: 300px; /* Smaller on mobile */
    }
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: #ecf0f1;
    padding: 8rem 0 2rem;
}

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

.footer-logo img {
    height: 5rem;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
}

.footer-logo p {
    color: #bdc3c7;
}

.social-icons {
    display: flex;
    margin-top: 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    color: white;
    transition: var(--transition);
}

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

.footer h4 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: #bdc3c7;
}

.footer-contact p i {
    margin-right: 1rem;
    color: var(--primary-color);
}

.whatsapp-mini {
    display: inline-flex;
    align-items: center;
    color: #bdc3c7;
    transition: var(--transition);
}

.whatsapp-mini:hover {
    color: var(--primary-color);
}

.whatsapp-mini i {
    margin-right: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Media Queries */
@media (max-width: 1024px) {
    html {
        font-size: 60%;
    }

    .banner-content,
    .support-content {
        flex-direction: column;
    }

    .banner .text-content,
    .banner-image,
    .support-image,
    .customer-support .text-content,
    .support-section .text-content {
        flex: none;
        max-width: 100%;
        text-align: center;
        padding: 0;
    }

    .banner-image,
    .support-image {
        margin-top: 5rem;
    }

    .pricing-card {
        width: 40%;
        min-width: 22rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }

    .nav-menu {
        position: fixed;
        top: 7rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 7rem);
        flex-direction: column;
        background-color: white;
        transition: 0.4s;
        box-shadow: var(--box-shadow);
        overflow-y: auto;
        padding: 4rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .nav-menu .cta-button {
        margin: 1rem 0;
        height: 5rem;
        width: 80%;
        max-width: 300px;
    }
    
    .nav-menu .cta-button a {
        padding: 0 2.5rem;
        height: 5rem;
        font-size: 1.6rem;
        width: 100%;
        justify-content: center;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile - Hide dropdown and make Services a simple link */
    .nav-menu .dropdown .dropdown-menu {
        display: none;
    }

    .nav-menu .dropdown > a .dropdown-arrow {
        display: none;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
        border-radius: var(--border-radius);
    }

    .subscribe-form button {
        margin-top: 1rem;
    }

    .service-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 50%;
    }

    h1 {
        font-size: 3.6rem;
    }

    h2 {
        font-size: 2.8rem;
    }

    .section-heading {
        margin-bottom: 4rem;
    }
}

/* Translation Process Section */
.process-section {
    background-color: var(--light-color);
    padding: 8rem 0;
    position: relative;
}

.process-container {
    max-width: 85rem;
    margin: 0 auto;
    position: relative;
}

.process-timeline {
    position: relative;
    padding: 5rem 0 3rem;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0.4rem;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 6rem;
    width: 100%;
    display: flex;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(1) {
    transition-delay: 0.1s;
}

.process-step:nth-child(2) {
    transition-delay: 0.3s;
}

.process-step:nth-child(3) {
    transition-delay: 0.5s;
}

.process-step:nth-child(4) {
    transition-delay: 0.7s;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:nth-child(odd) {
    justify-content: flex-start;
}

.process-step:nth-child(even) {
    justify-content: flex-end;
}

.process-content {
    width: 47%;
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .process-content {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(42, 99, 255, 0.15);
}

.process-content::after {
    content: "";
    position: absolute;
    top: 3rem;
    width: 2rem;
    height: 2rem;
    background-color: white;
    transform: rotate(45deg);
    z-index: 1;
}

.process-step:nth-child(odd) .process-content::after {
    right: -1rem;
}

.process-step:nth-child(even) .process-content::after {
    left: -1rem;
}

.step-number {
    width: 6rem;
    height: 6rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: bold;
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 0 0 0.4rem white, 0 0 15px rgba(0, 0, 0, 0.2);
}

.process-step h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.process-step p {
    color: #777;
    margin-bottom: 2rem;
}

.process-divider {
    width: 5rem;
    height: 0.3rem;
    background-color: var(--primary-color);
    margin-bottom: 2rem;
}

.process-features {
    text-align: left;
}

.process-features li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.process-features li:last-child {
    margin-bottom: 0;
}

.process-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.process-cta {
    text-align: center;
    margin-top: 5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.9s, transform 0.6s ease 0.9s;
}

.process-step.animate ~ .process-cta,
.process-step:last-child.animate ~ .process-cta {
    opacity: 1;
    transform: translateY(0);
}

.process-cta .button {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 3rem;
    }
    
    .process-step {
        justify-content: flex-end !important;
    }
    
    .process-content {
        width: calc(100% - 6rem);
        margin-left: 6rem;
    }
    
    .process-step:nth-child(odd) .process-content::after,
    .process-step:nth-child(even) .process-content::after {
        left: -1rem;
        right: auto;
    }
    
    .step-number {
        left: 3rem;
        transform: translateX(-50%);
    }
}

/* Quote Request Form */
.quote-form {
    background-color: var(--light-color);
    padding: 8rem 0;
}

.quote-form-container {
    max-width: 70rem;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 3rem;
}

.quote-request-form .form-group {
    margin-bottom: 2rem;
}

.quote-request-form .form-row {
    display: flex;
    gap: 2rem;
}

.quote-request-form .form-row .form-group {
    flex: 1;
}

.quote-request-form input,
.quote-request-form textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-size: 1.6rem;
    transition: var(--transition);
}

.quote-request-form input:focus,
.quote-request-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(42, 99, 255, 0.1);
}

.quote-request-form .custom-file-upload {
    display: inline-block;
    padding: 1.2rem 2rem;
    cursor: pointer;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    color: var(--text-color);
    transition: var(--transition);
}

.quote-request-form .custom-file-upload:hover {
    background-color: #e9e9e9;
}

.quote-request-form .custom-file-upload i {
    margin-right: 0.8rem;
}

.quote-request-form input[type="file"] {
    display: none;
}

.file-info {
    display: block;
    margin-top: 1rem;
    color: #777;
    font-size: 1.4rem;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
}

.form-disclaimer {
    margin-top: 2rem;
    text-align: center;
    color: #777;
    font-size: 1.4rem;
}

.quote-request-form .submit-group {
    text-align: center;
    margin-top: 3rem;
}

.quote-request-form .submit-group .button {
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    width: 100%;
    max-width: 30rem;
}

@media (max-width: 768px) {
    .quote-form-container {
        padding: 2rem;
    }
}

/* Success Message Styles */
.success-message {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
}

.success-message h3 {
    color: #059669;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-message p {
    color: #047857;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.whatsapp-cta, .phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.4rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.whatsapp-cta {
    background-color: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.whatsapp-cta:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.phone-cta {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.phone-cta:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 99, 255, 0.3);
}

.whatsapp-cta i, .phone-cta i {
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-cta, .phone-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .success-message {
        padding: 2rem;
    }
    
    .success-message h3 {
        font-size: 2rem;
    }
}

/* Success Page Styles */
.success-page {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 80vh;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon i {
    font-size: 8rem;
    color: #10b981;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-content h1 {
    color: var(--primary-color);
    font-size: 3.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.success-content h2 {
    color: var(--text-color);
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.success-content p {
    color: var(--text-light);
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.next-steps {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1.5rem;
    color: var(--text-color);
}

.next-steps li:last-child {
    border-bottom: none;
}

.next-steps i {
    color: var(--primary-color);
    font-size: 1.8rem;
    width: 24px;
    text-align: center;
}

.contact-options {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 12px;
}

.contact-options h3 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.whatsapp-button, .phone-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.4rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.whatsapp-button {
    background-color: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.whatsapp-button:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.phone-button {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.phone-button:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 99, 255, 0.3);
}

.redirect-info {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
}

.redirect-info p {
    color: #92400e;
    font-weight: 500;
    margin-bottom: 1rem;
}

#countdown {
    font-weight: 700;
    color: #f59e0b;
    font-size: 1.8rem;
}

.additional-services {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.additional-services h3 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.service-links a {
    padding: 1rem 1.5rem;
    background-color: #f1f5f9;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 99, 255, 0.2);
}

@media (max-width: 768px) {
    .success-content {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .success-content h1 {
        font-size: 2.4rem;
    }
    
    .success-content h2 {
        font-size: 2rem;
    }
    
    .success-icon i {
        font-size: 6rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-button, .phone-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .service-links {
        grid-template-columns: 1fr;
    }
    
    .next-steps {
        text-align: center;
    }
    
    .next-steps li {
        justify-content: center;
    }
}

/* Add styles for FAQ section */
.faq-section {
    background-color: var(--light-color);
    padding: 8rem 0;
}

.faq-container {
    max-width: 100rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 0; /* Changed from 2rem to work better in grid */
    overflow: hidden;
    transition: var(--transition);
    height: 100%; /* Ensure consistent height */
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(42, 99, 255, 0.15);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
    line-height: 1.4;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(42, 99, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-toggle i {
    font-size: 1.4rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    background-color: #fff;
}

.faq-answer p {
    margin: 0;
    padding: 0.5rem 0;
}

.faq-answer p:first-child {
    padding-top: 0;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 1000px;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(42, 99, 255, 0.1);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-item.active .faq-toggle {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.6rem;
        padding-right: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }
}

/* Examples Section */
.examples-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.example-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.example-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
}

.example-image {
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: zoom-in;
}

.example-image::before {
    content: "🔍";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.4rem;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.example-image:hover::before {
    opacity: 1;
}

.example-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.example-image:hover img {
    transform: scale(1.5);
    transform-origin: center center;
}

.image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.example-description {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    background-color: #f9f9f9;
}

.example-description h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.example-description p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Media Queries for Examples Section */
@media (min-width: 768px) {
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .example-images {
        flex-direction: row;
    }
    
    .example-image {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Image Zoom Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 60px;
    text-align: center;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    animation: zoom-in 0.3s forwards;
}

@keyframes zoom-in {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

#modal-caption {
    margin: 15px auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 40px;
    font-size: 1.8rem;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

/* Fullscreen button for example images */
.fullscreen-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.example-image:hover .fullscreen-btn {
    opacity: 1;
}

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

.zoomable-image {
    cursor: zoom-in;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 6rem;
    height: 6rem;
    background-color: #25D366; /* WhatsApp brand color */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp i {
    font-size: 3rem;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.floating-whatsapp .tooltip {
    position: absolute;
    top: -5rem;
    right: 0;
    background-color: #333;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-size: 1.4rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-whatsapp .tooltip::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    right: 2.5rem;
    border-width: 0.8rem 0.8rem 0 0.8rem;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.floating-whatsapp:hover .tooltip {
    opacity: 1;
    visibility: visible;
    top: -4.5rem;
}

/* Position adjustment when back-to-top is visible */
.back-to-top.active ~ .floating-whatsapp {
    bottom: 8rem;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 5rem;
        height: 5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .floating-whatsapp i {
        font-size: 2.5rem;
    }
    
    .back-to-top.active ~ .floating-whatsapp {
        bottom: 7rem;
    }

    /* Authorities section mobile styles */
    .authorities-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .authority-category h3 {
        font-size: 1.6rem !important;
    }

    .authority-list li {
        font-size: 1.4rem !important;
        padding: 0.8rem 0 !important;
    }

    .authority-note {
        padding: 1.5rem !important;
    }

    .authority-note h4 {
        font-size: 1.6rem !important;
    }
}

/* Blog post styles */
.blog-posts-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

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

.blog-post-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-post-image {
    height: 200px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 2rem;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-category {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-date {
    color: #666;
}

.blog-post-content h3 {
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-post-content h3 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-content h3 a:hover {
    color: var(--primary-color);
}

.blog-post-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.read-more-btn, .quote-btn {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.read-more-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.quote-btn {
    background: #f8f9fa;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Blog post detail styles */
.blog-post-detail {
    padding: 60px 0;
    background: white;
}

.blog-post-article {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-color);
}

.blog-post-header .blog-post-meta {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.read-time {
    color: #666;
    font-size: 0.9rem;
}

.blog-post-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.blog-post-body {
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-post-body h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.blog-post-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.blog-cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    text-align: center;
}

.blog-cta-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.blog-cta-card .button {
    background: white;
    color: var(--primary-color);
    margin: 0.5rem;
}

.blog-cta-card .button:hover {
    background: var(--light-color);
}

.ircc-flowchart, .document-types {
    text-align: center;
    margin: 3rem 0;
}

.flowchart-image, .documents-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-caption {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.requirement-card, .warning-card {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.warning-card {
    border-left-color: #dc3545;
    background: #fff5f5;
}

.requirement-card h4, .warning-card h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.document-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.document-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.document-category ul {
    list-style: none;
    padding: 0;
}

.document-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.document-category li:last-child {
    border-bottom: none;
}

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

.association-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.association-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-steps {
    margin: 3rem 0;
}

.process-steps .process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.process-steps .step-number {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.process-steps .process-step h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.consequences-list ul {
    background: #fff5f5;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid #dc3545;
}

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

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.advantage-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.final-cta {
    background: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 3rem 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

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

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

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    margin-top: 2rem;
}

/* Responsive design for blog */
@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-actions {
        flex-direction: column;
    }
    
    .process-steps .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-steps .step-number {
        align-self: flex-start;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-post-header .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
} 

/* Language Toggle Styles */
.language-toggle {
  margin-left: 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}
.language-toggle .lang-option {
  color: var(--primary-color, #0056b3);
  text-decoration: none;
  padding: 0 0.2em;
  transition: color 0.2s;
}
.language-toggle .lang-option.active-lang {
  text-decoration: underline;
  font-weight: bold;
  color: #003366;
  cursor: default;
}
.language-toggle .lang-option:not(.active-lang):hover {
  color: #007bff;
  text-decoration: underline;
} 