/* ==========================================
   CSS Variables & Reset
   ========================================== */
:root {
    /* Charleston Holdings Refined Palette (inspired by ANDA) */
    --primary-color: #3C4F66;        /* Deep Slate Blue - anchor, serious yet modern */
    --secondary-color: #B68A56;      /* Accent Copper/Gold - for navigation hover only */
    --design-color: #5A6F66;        /* Sage Green - Charleston Design branding */
    --accent-color: #DAD2C8;         /* Soft Sand Beige - neutral, architectural */
    --text-dark: #2B2E32;            /* Charcoal Gray - text + grounding */
    --text-light: #6B6B6B;           /* Muted gray for secondary text */
    --bg-light: #F8F6F3;             /* Warm Ivory - clean canvas, luxury undertone */
    --bg-white: #FFFFFF;             /* Pure white for contrast */
    --bg-sand: #DAD2C8;              /* Soft Sand Beige - architectural neutral */
    --education-gradient: linear-gradient(135deg, #3C4F66 0%, #4A5F7A 100%);
    --design-gradient: linear-gradient(135deg, #5A6F66 0%, #6B7F76 100%);
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(60, 79, 102, 0.1);
    --shadow-md: 0 4px 6px rgba(60, 79, 102, 0.1);
    --shadow-lg: 0 10px 25px rgba(60, 79, 102, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   Navigation Bar
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-brand h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    margin-top: 70px;
    height: calc(100vh - 70px);
    min-height: 600px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.hero-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
}

.education-panel .hero-background {
    background-image: url('/images/hero/hero-education-bg.jpg');
}

.design-panel .hero-background {
    background-image: url('/images/hero/hero-design-bg.JPG');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: var(--transition);
}

.education-panel .hero-overlay {
    background: linear-gradient(135deg, rgba(60, 79, 102, 0.7) 0%, rgba(74, 95, 122, 0.8) 100%);
}

.design-panel .hero-overlay {
    background: linear-gradient(135deg, rgba(90, 111, 102, 0.7) 0%, rgba(107, 127, 118, 0.8) 100%);
}

.hero-panel:hover .hero-overlay {
    background: linear-gradient(135deg, rgba(60, 79, 102, 0.8) 0%, rgba(74, 95, 122, 0.9) 100%);
}

.design-panel:hover .hero-overlay {
    background: linear-gradient(135deg, rgba(90, 111, 102, 0.8) 0%, rgba(107, 127, 118, 0.9) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    z-index: 2;
    transform: translateY(0);
    transition: var(--transition);
}

.hero-panel:hover .hero-content {
    transform: translateY(-10px);
}

.hero-panel:hover .hero-background {
    transform: scale(1.05);
}

.hero-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 400px;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.hero-panel:hover .hero-button {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   Sections
   ========================================== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.updates-section .section-title {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.updates-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Ensure card text is blue and not affected by section styles */
.updates-section .card-content h3,
.updates-section .update-card h3 {
    color: var(--primary-color) !important;
    text-shadow: none !important;
}

.updates-section .card-content p,
.updates-section .update-card p {
    color: var(--primary-color) !important;
    text-shadow: none !important;
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-text p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-cta-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.about-card {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.education-card:hover {
    border-color: var(--primary-color);
}

.design-card:hover {
    border-color: var(--design-color);
}

.card-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
}

.education-card .card-background {
    background-image: url('/images/about/about-education-bg.jpg');
}

.design-card .card-background {
    background-image: url('/images/about/about-design-bg.JPG');
}

.card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: var(--transition);
}

.education-card .card-overlay {
    background: linear-gradient(135deg, rgba(60, 79, 102, 0.7) 0%, rgba(74, 95, 122, 0.8) 100%);
}

.design-card .card-overlay {
    background: linear-gradient(135deg, rgba(90, 111, 102, 0.7) 0%, rgba(107, 127, 118, 0.8) 100%);
}

.about-card:hover .card-overlay {
    background: linear-gradient(135deg, rgba(60, 79, 102, 0.8) 0%, rgba(74, 95, 122, 0.9) 100%);
}

.design-card:hover .card-overlay {
    background: linear-gradient(135deg, rgba(90, 111, 102, 0.8) 0%, rgba(107, 127, 118, 0.9) 100%);
}

.about-card:hover .card-background {
    transform: scale(1.05);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    color: white !important;
}

.about-card h3,
.card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: white !important;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-card p,
.card-content p {
    color: white !important;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* Ensure about section card text is white */
.about-section .about-card h3,
.about-section .about-card p,
.about-section .card-content h3,
.about-section .card-content p {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7) !important;
}

.card-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary-color) !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
    border: none;
    box-shadow: var(--shadow-lg);
}

.card-button:hover {
    background: white;
    color: var(--primary-color) !important;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Business Unit Sections */
.education-section {
    position: relative;
    background-image: url('/images/sections/education-section-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.education-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(60, 79, 102, 0.8) 0%, rgba(74, 95, 122, 0.9) 100%);
    z-index: 1;
}

.education-section .container {
    position: relative;
    z-index: 2;
}

.business-unit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.business-unit-content.reverse {
    direction: rtl;
}

.business-unit-content.reverse > * {
    direction: ltr;
}

.business-unit-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: white !important;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.business-unit-text p {
    font-size: 1.1rem;
    color: white !important;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.features-section {
    margin: 2rem 0;
}

.features-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: white !important;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: white !important;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-section {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
    text-align: center;
    min-width: 180px;
}

.cta-button.primary {
    background: white;
    color: var(--primary-color) !important;
    box-shadow: var(--shadow-lg);
    border: none;
    font-weight: 600;
}

.cta-button.primary:hover {
    background: white;
    color: var(--primary-color) !important;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}



.business-unit-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.education-image .image-placeholder {
    background-image: url('/images/sections/education-unit-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}


.design-image .image-placeholder {
    background-image: url('/images/sections/design-unit-bg.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.design-section {
    position: relative;
    background-image: url('/images/sections/design-section-bg.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.design-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 111, 102, 0.7) 0%, rgba(107, 127, 118, 0.8) 100%);
    z-index: 1;
}

.design-section .container {
    position: relative;
    z-index: 2;
}

/* Design section text styling */
.design-section .business-unit-text h2 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.design-section .business-unit-text p {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.design-section .features-section h3 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.design-section .feature-list li {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.design-section .feature-list li::before {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Updates & Insights Section */
.updates-section {
    background: var(--primary-color);
}

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

.update-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.update-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.card-category {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-image {
    padding: 2rem;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image .image-placeholder {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.card-content {
    padding: 2rem;
}

.card-content h3,
.update-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--primary-color) !important;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: none;
}

.card-content p,
.update-card p {
    color: var(--primary-color) !important;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: none;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.update-card:hover .read-more {
    color: var(--primary-color);
    padding-left: 5px;
}

.updates-cta {
    text-align: center;
}

.cta-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.updates-section .cta-link {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.updates-section .cta-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    padding-left: 5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 3rem;
}

.modal-category {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.modal-article {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

/* Full-Frame Airtable Form Styling */
.contact-form-fullframe {
    width: 100%;
    height: 1050px;
    border-radius: 0;
    overflow: hidden;
}

.airtable-embed-fullframe {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 1050px !important;
}

/* Hide Airtable branding if needed */
.airtable-embed-fullframe iframe {
    border-radius: 0 !important;
    border: none !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 1050px !important;
}

/* Legacy container styles (hidden) */
.contact-form-container {
    display: none;
}

.airtable-embed {
    display: none;
}

/* Legacy form styles (hidden) */
.contact-form {
    display: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

.submit-button {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.submit-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        align-items: flex-start;
    }

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

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .business-unit-content,
    .business-unit-content.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .business-unit-content.reverse {
        direction: ltr;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

}

@media (max-width: 640px) {
    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .business-unit-text h2 {
        font-size: 1.75rem;
    }

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

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

    .contact-form-fullframe {
        height: 1050px;
        border-radius: 0;
    }

    .airtable-embed-fullframe {
        min-height: 1050px !important;
    }

    .airtable-embed-fullframe iframe {
        min-height: 1050px !important;
    }
}