/* 
    Nodo360 Social - Global Brand Styles
    Colores Oficiales:
    - Verde Nodo: #2F7F73
    - Verde Suave: #6FAFA3
    - Verde Oscuro: #1B5E50
    - Amarillo Acento (Oro): #E6B85C
    - Fondo Beige: #F5F1EA
    - Menta Claro: #D4F0E8
    - Gris Texto: #5F6F6C
*/

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Quicksand:wght@500;600;700&display=swap');

:root {
    --primary: #2F7F73;
    --primary-soft: #6FAFA3;
    --primary-dark: #1B5E50;
    --accent: #E6B85C;
    --accent-hover: #D4A843;
    --bg-color: #F5F1EA;
    --text-color: #5F6F6C;
    --white: #ffffff;
    --light-mint: #D4F0E8;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --container-width: 1200px;
    --shadow: 0 10px 30px rgba(47, 127, 115, 0.08);
    --shadow-hover: 0 20px 40px rgba(47, 127, 115, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    /* Notebook paper grid pattern */
    background-image: 
        linear-gradient(rgba(47, 127, 115, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 127, 115, 0.035) 1px, transparent 1px);
    background-size: 24px 24px;
}

h1, h2, h3, h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

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

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

.section {
    padding: 100px 0;
    position: relative;
}

.section-bg {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.01), inset 0 -20px 40px rgba(0, 0, 0, 0.01);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(47, 127, 115, 0.15);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(47, 127, 115, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 184, 92, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Header & Nav */
header {
    background-color: rgba(245, 241, 234, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(47, 127, 115, 0.05);
    transition: var(--transition);
}

header.scrolled {
    padding: 12px 0;
    background-color: rgba(245, 241, 234, 0.95);
    box-shadow: 0 5px 25px rgba(47, 127, 115, 0.08);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.brand-logo {
    max-height: 50px;
    width: auto;
    transition: var(--transition);
}

header.scrolled .brand-logo {
    max-height: 42px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links li a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    padding: 6px 0;
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--primary-dark);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.mobile-menu-icon span:nth-child(1) { top: 0px; }
.mobile-menu-icon span:nth-child(2) { top: 8px; }
.mobile-menu-icon span:nth-child(3) { top: 16px; }

.mobile-menu-icon.active span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}
.mobile-menu-icon.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.mobile-menu-icon.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Decorative Design Elements */
.diagonal-stripes {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

.stripes-top-left {
    top: 0;
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        var(--primary),
        var(--primary) 12px,
        transparent 12px,
        transparent 24px
    );
}

.stripes-bottom-right {
    bottom: 0;
    right: 0;
    background: repeating-linear-gradient(
        -45deg,
        var(--primary),
        var(--primary) 12px,
        transparent 12px,
        transparent 24px
    );
}

.title-with-line {
    position: relative;
    display: inline-block;
    margin-bottom: 35px;
    font-size: 2.5rem;
}

.title-with-line::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 10px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,5 Q50,1 100,5 Q50,9 0,5' fill='%23E6B85C' stroke='%23E6B85C' stroke-width='1'/></svg>") no-repeat;
    background-size: 100% 100%;
}

.title-left .title-with-line::after {
    left: 0;
    transform: translateX(0);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.accent-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: var(--light-mint);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 24px;
    border: 1.5px dashed var(--primary);
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: var(--primary);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(230, 184, 92, 0.4);
    z-index: -1;
    border-radius: 4px;
}

.hero-tagline {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 540px;
    color: var(--text-color);
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    color: var(--primary);
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.instagram-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.instagram-icon {
    width: 22px;
    height: 22px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    background-color: var(--light-mint);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    opacity: 0.6;
}

.floating-img {
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(47, 127, 115, 0.12);
    animation: float 6s ease-in-out infinite;
    border: 8px solid var(--white);
    max-width: 100%;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    position: relative;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.highlight-box {
    background-color: var(--white);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.highlight-box h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.highlight-box p {
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.collage-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.collage-img {
    position: absolute;
    border-radius: 24px;
    border: 6px solid var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.collage-img:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 10;
}

.collage-img-1 {
    width: 75%;
    top: 0;
    left: 0;
    z-index: 1;
}

.collage-img-2 {
    width: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
}

/* Audience Toggle / Section Selection */
.audience-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    background-color: var(--white);
    border: 2px solid rgba(47, 127, 115, 0.15);
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.05rem;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(47, 127, 115, 0.2);
}

/* Services Section */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.15rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}

.service-card::before, .service-card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--accent);
    opacity: 0;
    transition: var(--transition);
}

.service-card::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.service-card::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(47, 127, 115, 0.1);
}

.service-card:hover::before, .service-card:hover::after {
    opacity: 1;
}

.icon-wrap {
    width: 65px;
    height: 65px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    border-radius: 18px;
    margin-bottom: 24px;
    background-color: var(--light-mint);
    border: 1.5px solid var(--primary-soft);
    transition: var(--transition);
}

.service-card:hover .icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Interactive Mitos y Realidades Section */
.myr-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.myr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.myr-card {
    background: var(--primary);
    color: var(--white);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid var(--primary-soft);
}

.myr-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.myr-card .badge-mito {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.myr-card .badge-mito span {
    color: #ff6b6b;
    font-weight: 900;
}

.myr-card h3.myth-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

/* Hand drawn circle around myth text */
.myr-card h3.myth-text::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -10px;
    right: -10px;
    bottom: -5px;
    border: 2px solid var(--accent);
    border-radius: 50% / 15%;
    pointer-events: none;
    transform: rotate(-1deg);
    opacity: 0.85;
}

.arrow-divider {
    display: flex;
    justify-content: center;
    margin: 10px 0 20px;
    color: var(--accent);
}

.arrow-divider svg {
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.reality-box {
    background-color: var(--white);
    color: var(--text-color);
    border-radius: 18px;
    padding: 24px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* L Brackets inside reality box */
.reality-box::before, .reality-box::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid var(--accent);
}

.reality-box::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.reality-box::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.reality-box h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.reality-box h4 span {
    color: #2ecc71;
    font-weight: 900;
}

.reality-box p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Community / Instagram Section */
#instagram {
    padding-bottom: 100px;
    overflow: hidden;
}

.splide__slide {
    padding: 15px;
}

.ig-card {
    display: block;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 5px solid var(--white);
    background-color: var(--white);
}

.ig-card img {
    width: 100%;
    display: block;
    border-radius: 18px;
    transition: transform 0.5s ease;
}

.ig-view {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: rgba(47, 127, 115, 0.95);
    color: var(--white);
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ig-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

.ig-card:hover img {
    transform: scale(1.04);
}

.ig-card:hover .ig-view {
    bottom: 0;
}

/* Contact / B2B Form Section */
.contact-box {
    background-color: var(--primary);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 40px;
    padding: 80px 60px;
    color: var(--white);
    position: relative;
    box-shadow: 0 20px 50px rgba(47, 127, 115, 0.2);
    overflow: hidden;
}

.contact-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1) 12px,
        transparent 12px,
        transparent 24px
    );
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 35px;
    font-size: 1.15rem;
    opacity: 0.95;
    line-height: 1.7;
}

.speech-bubble {
    position: relative;
    background-color: rgba(255, 255, 255, 0.12);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 24px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 40px;
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.12) transparent;
    display: block;
    width: 0;
}

.speech-bubble span {
    color: var(--accent);
    font-weight: 700;
}

.contact-form-container {
    background-color: var(--white);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.contact-form-container h3 {
    margin-bottom: 24px;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    border: 2px solid rgba(47, 127, 115, 0.15);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #faf9f6;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(47, 127, 115, 0.1);
}

.btn-form {
    width: 100%;
    margin-top: 10px;
}

/* Footer Styling */
footer {
    padding: 80px 0 30px;
    background-color: #1E2E2A;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.footer-brand h3 span {
    color: var(--accent);
    font-weight: 300;
}

.footer-brand p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 350px;
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon-btn:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul li {
    margin-bottom: 12px;
}

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

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    font-size: 0.95rem;
}

.footer-bottom p span {
    color: #2ecc71;
}

/* Mobile Menu Active Class */
.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    padding: 40px 20px;
    border-bottom: 4px solid var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 999;
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-links.active li {
    width: 100%;
    text-align: center;
}

.nav-links.active li a {
    font-size: 1.2rem;
    display: block;
    padding: 10px 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        margin: 0 auto 35px;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-image {
        order: -1;
    }
    .hero-image img {
        max-width: 80%;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .collage-container {
        height: 350px;
        max-width: 500px;
        margin: 0 auto;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info {
        text-align: center;
    }
    .speech-bubble::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    .section {
        padding: 70px 0;
    }
    .section-bg {
        padding: 70px 0;
    }
    .contact-box {
        padding: 40px 20px;
    }
    .contact-form-container {
        padding: 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
