/* =========================================
   1. VARIABLES & THEME SETUP
   ========================================= */
:root {
    /* Colors */
    --primary-color: #134d1b;
    --secondary-color: #0c3b12;
    --accent-color: #f6d2ae;
    --accent-hover: #e0b080;
    --header-gradient: linear-gradient(135deg, #3e2616 0%, #674730 100%);

    /* Text Colors */
    --text-dark: #2c2c2c;
    --text-medium: #555555;
    --text-light: #f9fafb;
    --white: #ffffff;

    /* Spacing System */
    --section-padding: 6rem 0;
    --section-padding-mobile: 4rem 0;

    /* Typography System */
    --h1-size: 3.5rem;
    --h2-size: 2.8rem;
    --h3-size: 1.75rem;
    --h4-size: 1.35rem;
    --body-size: 1.125rem;
    --small-size: 0.95rem;

    /* Fonts */
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Transitions */
    --transition-speed: 0.3s;
}

/* =========================================
   2. RESET & GLOBAL STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CRITICAL FIX: Overflow handling */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    font-size: var(--body-size);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   3. TYPOGRAPHY & TITLES
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1,
h2 {
    font-family: var(--font-serif);
}

.section-title {
    font-size: var(--h2-size);
    text-align: center;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

.section-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* =========================================
   4. BUTTONS
   ========================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: var(--white);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-primary-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    font-weight: 600;
    transition: all var(--transition-speed);
}

.btn-primary-outline:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

/* =========================================
   5. HEADER
   ========================================= */
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100.1%;
    /* Slight overlap to prevent gaps */
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 15px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

#header.scrolled {
    background: var(--header-gradient);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    height: 160px;
    /* Desktop Size */
    transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

#header.scrolled .logo-container img {
    height: 110px;
}

/* =========================================
   6. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--primary-color);
    /* Green BG Base */
}

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    animation: zoomIn 25s infinite alternate;
    opacity: 0.25;
    /* Subtle transparency at 25% */
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3, 43, 8, 0.7), rgba(0, 0, 0, 0.3));
    /* Lighter overlay */
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(246, 210, 174, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    text-transform: uppercase;
}

.hero-title {
    font-size: var(--h1-size);
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--accent-color);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #e0e0e0;
    font-weight: 300;
}

/* =========================================
   7. CREDIBILITY SECTION
   ========================================= */
.credibility-section {
    background-color: var(--primary-color);
    padding: 3rem 0;
    color: var(--white);
    position: relative;
    z-index: 20;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cred-item i {
    color: var(--accent-color);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.cred-item span {
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.4;
}

/* =========================================
   8. SERVICES SECTION
   ========================================= */
.services-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--accent-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(19, 77, 27, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-speed);
}

.service-card:hover .icon-box {
    background-color: var(--primary-color);
}

.icon-box i {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

.service-card:hover .icon-box i {
    color: var(--white);
}

.service-card h3 {
    font-size: var(--h3-size);
    margin-bottom: 1rem;
}

.service-list {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.service-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent-color);
    font-size: 0.8rem;
}

.service-objective {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: auto;
}

/* CTA Card */
.cta-card {
    background-color: var(--primary-color);
    align-items: center;
    text-align: center;
    justify-content: center;
}

.cta-card h3 {
    color: var(--white);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
}

.cta-card .btn-primary-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-card .btn-primary-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* =========================================
   9. TARGET AUDIENCE
   ========================================= */
.target-audience-section {
    position: relative;
    padding: var(--section-padding);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.audience-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/trigo.webp');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    filter: brightness(0.4);
}

.relative-z {
    position: relative;
    z-index: 5;
}

.audience-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4rem;
    border-radius: 24px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    color: var(--white);
}

.audience-content h2 {
    color: var(--white);
    font-size: var(--h2-size);
    text-align: center;
    margin-bottom: 3rem;
}

.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(19, 77, 27, 0.7);
    padding: 1rem 2rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    user-select: none;
}

.audience-item:hover {
    background: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.audience-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.audience-item span {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
}

.audience-item:hover i {
    color: var(--secondary-color);
}

.audience-item:hover span {
    color: var(--secondary-color);
    font-weight: 700;
}

.audience-footer {
    text-align: center;
    margin-top: 3rem;
}

.audience-footer p {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 2rem;
}

/* =========================================
   10. DIFFERENTIALS (Composition Update)
   ========================================= */
.differentials-section {
    padding: var(--section-padding);
    background: var(--white);
    overflow: hidden;
    /* Fix Scroll */
}

.differentials-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.diff-image-col {
    width: 45%;
}

.diff-content-col {
    width: 55%;
}

/* Circular Composition Layout (Refined) */
.composition-wrapper {
    position: relative;
    height: 550px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.comp-img-back-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    /* Big Circle */
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
    z-index: 1;
}

.comp-img-front-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 320px;
    height: 320px;
    /* Big Circle */
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 8px solid white;
    z-index: 2;
}

.comp-img-back-wrapper img,
.comp-img-front-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decorative-circle {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 250px;
    height: 250px;
    background-color: rgba(246, 210, 174, 0.3);
    border-radius: 50%;
    z-index: 0;
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.diff-item {
    display: flex;
    gap: 1.5rem;
}

.diff-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background-color: #f2f7f3;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diff-icon i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.diff-text h4 {
    font-size: var(--h4-size);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.diff-text p {
    margin: 0;
    font-size: 1.05rem;
}

/* =========================================
   11. FINAL CTA
   ========================================= */
.final-cta-section {
    background-color: var(--secondary-color);
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.glow-1 {
    top: -250px;
    left: -150px;
}

.glow-2 {
    bottom: -250px;
    right: -150px;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #d1d1d1;
    margin: 0 auto 3rem;
    max-width: 700px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: var(--white);
    padding: 12px 35px;
    border-radius: 60px;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-5px) scale(1.02);
}

.btn-whatsapp i {
    font-size: 2.5rem;
    margin-right: 15px;
}

.btn-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.btn-large {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
}

/* =========================================
   12. FOOTER
   ========================================= */
.main-footer {
    background-color: #021a05;
    color: var(--white);
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-bio-col {
    display: flex;
    gap: 2rem;
}

.footer-img-wrapper {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

.footer-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.footer-bio-text h3 {
    color: var(--accent-color);
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.oab {
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.footer-bio-text p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-block h4,
.address-block h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
    padding-left: 15px;
    border-left: 3px solid var(--accent-color);
}

.contact-block ul li,
.address-text {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 1rem;
}

.contact-block ul li i,
.address-text i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    color: var(--white);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dev-link {
    color: #555;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.dev-link:hover {
    color: #888;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    z-index: 100;
    animation: bounce-slow 3s infinite;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Animation Keyframes */
@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================================
   12.1 FOOTER PILL BUTTONS
   ========================================= */
.footer-pill-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-pill {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.footer-pill:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* =========================================
   13. MEDIA QUERIES (RESPONSIVE)
   ========================================= */

/* Tablet & Smaller Desktop */
@media (max-width: 992px) {
    :root {
        --h1-size: 3rem;
        --h2-size: 2.4rem;
    }

    .differentials-layout {
        flex-direction: column;
    }

    .diff-image-col,
    .diff-content-col {
        width: 100%;
    }

    .composition-wrapper {
        height: 400px;
        margin-bottom: 2rem;
    }

    .comp-img-back-wrapper,
    .comp-img-front-wrapper {
        width: 250px;
        height: 250px;
        border-radius: 50%;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
        --h1-size: 2.5rem;
        --h2-size: 2.1rem;
        --h3-size: 1.6rem;
        --body-size: 1.15rem;
    }

    /* HEADER & LOGO FIX */
    .header-container {
        padding: 5px 15px;
        justify-content: center;
        width: 100%;
        display: flex;
    }

    .logo-container {
        display: block;
        width: auto;
        text-align: center;
        width: 100%;
    }

    .logo-container img {
        height: 140px;
        margin: 0 auto;
        display: block;
        max-width: 100%;
        /* Prevent overflow */
    }

    /* Hero Fix */
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-bottom: 4rem;
    }

    .hero-content {
        padding-top: 180px;
    }

    .hero-title {
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-card {
        padding: 1.5rem;
        /* More compact */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        /* Better definition */
        border: 1px solid rgba(19, 77, 27, 0.1);
        /* Subtle green border */
    }

    .service-list li {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    /* Target Audience - ALIGNMENT FIX */
    .audience-content {
        padding: 2.5rem 1.5rem;
    }

    .audience-grid {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: center;
        /* Forces center alignment */
    }

    .audience-item {
        width: 100%;
        max-width: 400px;
        justify-content: center;
        padding: 1.2rem;
        margin: 0 auto;
        /* Force horizontal center */
    }

    /* Differentials & Composition Fixes */
    .diff-list {
        gap: 2rem;
    }

    .diff-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .diff-icon {
        margin: 0 auto;
    }

    /* Mobile Circular Composition */
    .composition-wrapper {
        height: 420px;
        max-width: 350px;
    }

    .comp-img-back-wrapper {
        width: 220px;
        height: 220px;
        right: 10px;
        top: 0;
        border-radius: 50%;
    }

    .comp-img-front-wrapper {
        width: 220px;
        height: 220px;
        left: 10px;
        bottom: 0;
        border-radius: 50%;
    }

    .decorative-circle {
        width: 150px;
        height: 150px;
        left: 0;
        bottom: 0;
    }

    /* Footer - Mobile Optimization */
    .main-footer {
        padding-top: 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bio-col {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact-col {
        max-width: 350px;
        margin: 0 auto;
    }

    .contact-block h4,
    .address-block h4 {
        border-left: 3px solid var(--accent-color);
        border-bottom: none;
        padding-left: 15px;
        padding-bottom: 0;
        margin-bottom: 1.5rem;
        display: block;
        text-align: left;
    }

    .contact-block ul li,
    .address-text {
        justify-content: flex-start;
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 80px;
    }

    .dev-link {
        font-size: 0.75rem;
        opacity: 0.6;
    }
}