/* ========================================
   Main CSS - Always Loaded
   ======================================== */

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

:root {
    --blue: #2E5090;
    --blue-dark: #1E3A5F;
    --blue-light: #4A7BC7;
    --blue-pale: #E8F1FF;
    --khaki: #8B7355;
    --khaki-dark: #6B5D54;
    --khaki-light: #C4B5A0;
    --khaki-pale: #E8DDD4;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray: #F5F5F5;
    
    /* Typography */
    --font-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.875rem;
    --font-size-sm: 0.95rem;
    --font-size-base: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;
    
    --font-weight-normal: 400;
    --font-weight-medium: 400; /* fallback to normal */
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 700; /* fallback to bold */
    --font-weight-black: 900; /* for Heebo headings */
    
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-base: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2.5rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;
    --spacing-5xl: 6rem;
    --spacing-6xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-base: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Navbar Heights */
    --navbar-height-desktop: 80px;
    --navbar-height-mobile: 65px;
    
    /* Shadows */
    --shadow-sm: 0 2px 20px rgba(0, 0, 0, 0.05);
    --shadow-base: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-normal);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    font-size: var(--font-size-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: rtl;
}

/* Global heading styles */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-family-heading);
}

/* Ensure h3 and h4 have the same font weight */
h3, h4,
.h3, .h4 {
    font-weight: var(--font-weight-bold);
}

/* Front page content wrapper */
.front-page-content {
    min-height: 50vh; /* Reduced to ensure footer is visible */
}

::selection {
    background: var(--blue);
    color: var(--white);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    height: var(--navbar-height-desktop);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.site-logo {
    max-height: 60px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-extrabold);
    color: var(--blue-dark);
    letter-spacing: -0.5px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.primary-menu {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
}

.menu-item > a,
.menu-item > span {
    text-decoration: none;
    color: var(--blue-dark);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    padding: var(--spacing-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.menu-item > a:hover,
.menu-item > span:hover {
    color: var(--blue);
}

.menu-item > a::before,
.menu-item > span::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.menu-item > a:hover::before,
.menu-item > span:hover::before,
.menu-item:hover > a::before,
.menu-item:hover > span::before {
    width: 100%;
    right: auto;
    left: 0;
}

.menu-item-has-children > a::after,
.menu-item-has-children > span::after {
    content: '▼';
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    margin-top: -2px;
}

.sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: var(--spacing-sm);
    list-style: none;
    padding: var(--spacing-sm) 0;
    border: 1px solid rgba(46, 80, 144, 0.1);
}

.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu .menu-item {
    width: 100%;
}

.sub-menu .menu-item > a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--blue-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-sm);
}

.sub-menu .menu-item > a:hover {
    background: var(--blue-pale);
    color: var(--blue);
    padding-right: calc(var(--spacing-md) + var(--spacing-xs));
}

.sub-menu .menu-item > a::before {
    display: none;
}

.nav-cta {
    margin-right: 0;
}

.donate-btn {
    background: var(--blue);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 80, 144, 0.2);
    white-space: nowrap;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.donate-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.donate-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 80, 144, 0.3);
}

.donate-btn:hover::after {
    width: 200px;
    height: 200px;
}

/* Mobile Donate Button */
.donate-btn-mobile {
    display: none;
    background: var(--blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    transition: all 0.3s ease;
    margin-right: auto;
    margin-left: var(--spacing-sm);
    font-size: var(--font-size-sm);
    white-space: nowrap;
}

.donate-btn-mobile:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(46, 80, 144, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    width: 30px;
    height: 30px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--blue-dark);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    border-radius: 1.5px;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 8px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 8px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1.5px;
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1.5px;
}

/* Footer */
.footer {
    background: var(--blue-dark);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 50%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--khaki-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-section a:hover {
    color: var(--khaki-light);
    padding-right: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* Page Hero Section (Used in single and page templates) */
.page-hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    position: relative;
    overflow: hidden;
    margin-top: 85px;
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 403.30667 466.66666' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m 2628.66,2390.95 -207.09,-358.68 -11.05,-19.16 -11.08,-19.16 -143.73,-248.92 -11.02,-19.12 -11.06,-19.19 -311.23,-539.03 h 264.17 l 173.31,300.18 22.09,38.29 143.71,248.9 11.07,19.17 11.07,19.15 477,826.3 h -936.56 l 132.05,-228.73 z M 396.063,1109.13 l 207.183,358.78 11.07,19.13 11.032,19.16 143.722,248.94 11.071,19.16 11.05,19.14 311.209,538.98 H 838.309 L 665.023,2032.25 653.949,2013.1 642.898,1993.95 499.156,1744.99 488.125,1725.87 477.074,1706.74 0,880.41 h 936.57 l -132.035,228.72 z m 1107.587,1918.28 8.76,15.16 213.27,-369.41 11.08,-19.16 11.04,-19.14 143.75,-248.97 22.13,-38.27 311.2,-539.03 132.03,228.68 -173.32,300.21 -22.11,38.29 -143.74,248.96 -11.05,19.16 -11.06,19.16 -483.22,836.95 -474.46,-821.78 h 264.09 z m 920.88,-1564.6 178.84,-309.74 25.42,-43.94 H 1203.81 l 132.06,-228.72 h 1688.95 l -468.28,811.11 z m -1824.182,574.49 -204.157,353.65 1424.899,0.02 -132.07,228.71 H 0.0195313 L 468.301,1808.57 Z m 937.422,-1535.862 -25.41,-43.926 -213.23,369.414 -11.03,19.129 -11.08,19.172 -143.74,248.963 -11.03,19.14 -11.12,19.19 -311.157,539 -132.039,-228.75 173.289,-300.13 11.074,-19.19 11.043,-19.15 143.75,-248.968 11.07,-19.16 11.05,-19.152 L 1512.45,0 1986.93,821.875 H 1722.75 L 1537.77,501.438' style='fill:%23FFFFFF;fill-opacity:0.1;fill-rule:nonzero;stroke:none' transform='matrix(0.13333333,0,0,-0.13333333,0,466.66667)'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    opacity: 0.5;
}

.page-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-family-heading);
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    font-weight: var(--font-weight-black);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-tight);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: var(--font-size-xl);
    color: var(--khaki-light);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content Area */
.page-content {
    padding: var(--spacing-4xl) 0;
    background: var(--gray);
}

.wp-block-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Allow ACF blocks to use full width */
.wp-block-content .acf-block {
    max-width: none;
    margin-left: calc(-1 * var(--spacing-lg));
    margin-right: calc(-1 * var(--spacing-lg));
}

/* Reset padding for ACF block sections */
.wp-block-content .hero-section,
.wp-block-content .problem-section,
.wp-block-content .complete-support,
.wp-block-content .solutions-section,
.wp-block-content .mission-section,
.wp-block-content .gallery-section,
.wp-block-content .cta-section {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
}

/* WordPress Block Editor Typography */
.wp-block-content h1,
.wp-block-content h2,
.wp-block-content h3,
.wp-block-content h4,
.wp-block-content h5,
.wp-block-content h6 {
    font-weight: var(--font-weight-bold);
    color: var(--blue-dark);
    line-height: var(--line-height-tight);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.wp-block-content h1 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.wp-block-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--khaki) 100%);
    border-radius: 2px;
}

.wp-block-content h2 {
    font-size: var(--font-size-3xl);
    margin-top: var(--spacing-3xl);
}

.wp-block-content h3 {
    font-size: var(--font-size-2xl);
}

.wp-block-content h4 {
    font-size: var(--font-size-xl);
}

.wp-block-content h5 {
    font-size: var(--font-size-lg);
}

.wp-block-content h6 {
    font-size: var(--font-size-md);
    color: var(--khaki-dark);
}

.wp-block-content p {
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}


.wp-block-content a {
    color: var(--blue);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.wp-block-content a:hover {
    color: var(--blue-dark);
    border-bottom-color: var(--blue);
}

/* Lists */
.wp-block-content ul,
.wp-block-content ol {
    margin: var(--spacing-lg) 0;
    padding-right: var(--spacing-xl);
}

.wp-block-content li {
    margin-bottom: var(--spacing-sm);
    line-height: var(--line-height-relaxed);
}

.wp-block-content ul li::marker {
    color: var(--blue);
}

.wp-block-content ol li::marker {
    color: var(--khaki);
    font-weight: var(--font-weight-bold);
}

/* Blockquote */
.wp-block-quote {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--gray);
    border-right: 5px solid var(--blue);
    border-radius: var(--radius-sm);
    position: relative;
}

.wp-block-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 80px;
    color: var(--blue);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.wp-block-quote p {
    margin: 0;
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--blue-dark);
}

.wp-block-quote cite {
    display: block;
    margin-top: var(--spacing-md);
    font-size: var(--font-size-base);
    color: var(--khaki-dark);
    font-style: normal;
}

.wp-block-quote cite::before {
    content: '— ';
}

/* Images */
.wp-block-image {
    margin: var(--spacing-2xl) 0;
    text-align: center;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.wp-block-image:hover img {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.wp-block-image figcaption {
    margin-top: var(--spacing-md);
    font-size: var(--font-size-sm);
    color: var(--khaki-dark);
    font-style: italic;
}

/* Gallery */
.wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-2xl) 0;
}

.wp-block-gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-base);
    box-shadow: var(--shadow-base);
    transition: all 0.3s ease;
}

.wp-block-gallery figure:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.wp-block-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.wp-block-gallery figure:hover img {
    transform: scale(1.1);
}

/* Separator */
.wp-block-separator {
    border: none;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--blue) 25%, var(--khaki) 75%, transparent 100%);
    margin: var(--spacing-3xl) auto;
    max-width: 300px;
    border-radius: 2px;
}

/* Button */
.wp-block-button {
    margin: var(--spacing-lg) 0;
}

.wp-block-button a {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-2xl);
    background: var(--blue);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    border: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 80, 144, 0.2);
    position: relative;
    overflow: hidden;
}

.wp-block-button a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.wp-block-button a:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 80, 144, 0.3);
}

.wp-block-button a:hover::before {
    width: 300px;
    height: 300px;
}

/* Documents Section CSS */
.documents-section {
    padding: 0 0 var(--spacing-4xl) 0;
    background: var(--gray);
}

.documents-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.documents-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.documents-header h2 {
    font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-4xl));
    font-weight: var(--font-weight-extrabold);
    color: var(--blue-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-md);
}

.documents-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--khaki) 100%);
    border-radius: 2px;
}

.documents-header p {
    font-size: var(--font-size-lg);
    color: var(--khaki-dark);
    line-height: var(--line-height-relaxed);
    opacity: 0.9;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.document-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-base);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.document-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: var(--blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
}

.document-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-light);
}

.document-item:hover::before {
    transform: scaleY(1);
}

.document-icon {
    flex-shrink: 0;
    width: 50px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--blue);
    transition: all 0.3s ease;
}

.document-item:hover .document-icon svg {
    fill: var(--blue-dark);
    transform: scale(1.1);
}

.document-content {
    flex: 1;
    min-width: 0;
}

.document-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--blue-dark);
    line-height: var(--line-height-tight);
}

/* No documents message */
.no-documents {
    text-align: center;
    padding: var(--spacing-3xl);
    color: var(--khaki-dark);
    font-size: var(--font-size-lg);
}

/* Responsive Styles */
@media (max-width: 968px) {
    .nav-container {
        height: var(--navbar-height-mobile);
        padding: 0 var(--spacing-md);
    }
    
    .site-logo {
        max-height: 55px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .donate-btn-mobile {
        display: inline-block;
    }
    
    .nav-cta:not(.show-mobile) {
        display: none;
    }

    .nav-wrapper {
        position: fixed;
        top: var(--navbar-height-mobile);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        max-height: calc(100vh - var(--navbar-height-mobile));
        overflow-y: auto;
        gap: 20px;
    }

    .nav-wrapper.active {
        transform: translateY(0);
        opacity: 1;
    }

    .primary-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .menu-item {
        width: 100%;
        position: relative;
    }

    .menu-item > a,
    .menu-item > span {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        width: 100%;
    }

    .menu-item > a::before,
    .menu-item > span::before {
        display: none;
    }

    .menu-item-has-children > a,
    .menu-item-has-children > span {
        padding-left: 30px;
    }

    .menu-item-has-children > a::after,
    .menu-item-has-children > span::after {
        position: absolute;
        left: 0;
        right: auto;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
        margin: 0;
    }

    .menu-item-has-children.active > a::after,
    .menu-item-has-children.active > span::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--gray);
        margin: 0;
        display: none;
        border-radius: 0;
        border: none;
    }

    .menu-item-has-children.active > .sub-menu {
        display: block;
    }

    .sub-menu .menu-item > a {
        padding-right: 40px;
    }

    .nav-cta {
        width: 100%;
        margin-top: 20px;
    }

    .donate-btn {
        width: 100%;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .page-hero {
        padding: var(--spacing-2xl) 0 var(--spacing-xl);
    }

    .page-hero::after {
        width: 300px;
        height: 300px;
        left: -80px;
    }

    .page-title {
        font-size: var(--font-size-3xl);
    }

    .page-subtitle {
        font-size: var(--font-size-lg);
    }

    .wp-block-content {
        padding: 0 var(--spacing-md);
    }

    .wp-block-content h1 {
        font-size: var(--font-size-3xl);
    }

    .wp-block-content h2 {
        font-size: var(--font-size-2xl);
    }

    .wp-block-gallery {
        grid-template-columns: 1fr;
    }

    .document-item {
        padding: var(--spacing-md);
    }

    .document-icon {
        width: 40px;
        height: 48px;
    }

    .document-title {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 568px) {
    :root {
        --navbar-height-mobile: 65px;
    }
    
    .nav-container {
        padding: 10px 15px;
        height: var(--navbar-height-mobile);
    }

    .site-logo {
        max-height: 48px;
    }

    .logo-text {
        font-size: 1.1rem;
    }
    
    .donate-btn-mobile {
        margin-left: 10px;
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* Fix for actual mobile devices (not just responsive view) */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari specific styles */
    @media (max-width: 768px) {
        :root {
            --navbar-height-mobile: 65px;
        }
        
        .nav {
            height: var(--navbar-height-mobile) !important;
            width: 100vw !important;
            left: 0 !important;
            right: 0 !important;
        }
        
        .nav-container {
            height: var(--navbar-height-mobile) !important;
            width: 100% !important;
            max-width: 100vw !important;
            padding: 10px 15px !important;
        }
    }
}

/* Additional mobile viewport fix */
@media screen and (max-width: 768px) {
    .nav {
        width: 100vw;
        max-width: 100vw;
        left: 0;
        right: 0;
    }
    
    .nav-container {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
}

@media (max-width: 568px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section ul {
        padding: 0;
        text-align: center;
    }

    .footer-section ul li {
        text-align: center;
    }

    .footer-section a {
        display: inline-block;
    }

    .wp-block-quote {
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .wp-block-quote::before {
        font-size: 60px;
    }
}

/* Page Title Section */
.page-hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    padding: var(--spacing-6xl) 0 var(--spacing-3xl);
    margin-top: 80px; /* Account for fixed nav */
    position: relative;
    overflow: hidden;
}


.page-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Page Title */
.page-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-black);
    color: var(--white);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-md);
}

.page-subtitle {
    font-size: var(--font-size-lg);
    color: var(--white);
    line-height: var(--line-height-relaxed);
    max-width: 1000px;
}

.page-subtitle p {
    margin: 0;
}

/* Post Meta */
.post-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--khaki-dark);
    margin-top: var(--spacing-lg);
}

.post-meta .separator {
    color: var(--khaki-light);
}

.post-meta a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-meta a:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: var(--spacing-4xl) 0 var(--spacing-2xl);
        margin-top: 70px;
    }
    
    .page-hero-container {
        padding: 0 20px;
    }
    
    .page-title {
        font-size: var(--font-size-2xl);
    }
    
    .page-subtitle {
        font-size: var(--font-size-base);
    }
    
    .post-meta {
        flex-wrap: wrap;
        font-size: var(--font-size-xs);
    }
}

/* Gallery Lightbox Styles */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
    animation: lightboxFadeIn 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    background-color: #fff;
    margin: 20px;
    padding: 0;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    animation: lightboxSlideIn 0.3s ease;
}

@keyframes lightboxSlideIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 48px;
    height: 48px;
    background-color: var(--blue);
    border: 2px solid var(--white);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
    box-shadow: 0 4px 15px rgba(46, 80, 144, 0.4);
}

.lightbox-close:hover {
    background-color: var(--blue-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(46, 80, 144, 0.5);
}

.lightbox-body {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.lightbox-image-container {
    position: relative;
    flex-shrink: 0;
    background-color: #000;
}

.lightbox-image {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.lightbox-text-content {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.lightbox-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.lightbox-description {
    font-size: var(--font-size-base);
    color: #444;
    line-height: 1.6;
}

.lightbox-description p {
    margin-bottom: 15px;
}

.lightbox-description p:last-child {
    margin-bottom: 0;
}

/* Gallery Item Clickable Styles */
.gallery-item[data-click-action="lightbox"],
.gallery-item[data-click-action="link"] {
    cursor: pointer;
    position: relative;
}

/* Gallery Link Wrapper */
a.gallery-item-link {
    text-decoration: none;
    display: block;
}

.gallery-item[data-click-action="lightbox"]::after,
.gallery-item[data-click-action="link"]::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--blue);
    border: 2px solid var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(46, 80, 144, 0.3);
}

.gallery-item[data-click-action="lightbox"]:hover::after,
.gallery-item[data-click-action="link"]:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.gallery-item[data-click-action="lightbox"]::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6M14 10l7-7M9 21H3v-6M10 14l-7 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
}

.gallery-item[data-click-action="link"]::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14L21 3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
}

/* Prevent body scroll when lightbox is open */
body.lightbox-open {
    overflow: hidden;
}

/* RTL Support */
[dir="rtl"] .lightbox-close {
    right: auto;
    left: 20px;
}

[dir="rtl"] .gallery-item[data-click-action="lightbox"]::after,
[dir="rtl"] .gallery-item[data-click-action="link"]::after {
    right: auto;
    left: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lightbox-content {
        margin: 10px;
        max-width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .lightbox-text-content {
        padding: 20px;
    }
    
    .lightbox-title {
        font-size: var(--font-size-lg);
    }
    
    .lightbox-image {
        max-height: 50vh;
    }
    
    [dir="rtl"] .lightbox-close {
        right: auto;
        left: 10px;
    }
    
    /* Fix gallery icon positioning on mobile */
    .gallery-item[data-click-action="lightbox"]::after,
    .gallery-item[data-click-action="link"]::after {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        background-size: 18px;
    }
    
    [dir="rtl"] .gallery-item[data-click-action="lightbox"]::after,
    [dir="rtl"] .gallery-item[data-click-action="link"]::after {
        right: auto;
        left: 10px;
    }
}

/* Contact Form Styles */
.contact-form-block {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(248, 247, 240, 0.5), rgba(255, 255, 255, 0));
    position: relative;
    overflow: hidden;
}

.contact-form-block::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--khaki-pale) 0%, transparent 70%);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.contact-form-block::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--blue-pale) 0%, transparent 70%);
    opacity: 0.3;
    animation: float 25s ease-in-out infinite reverse;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -150px;
    width: 250px;
    height: 250px;
    transform: rotate(15deg);
    background-image: url("data:image/svg+xml,%3Csvg fill='%234A7BC7' width='800px' height='800px' viewBox='0 0 64 64' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cg%3E%3Cpath d='M62.9891,2.5618c-0.0765-0.5779-0.6611-0.9805-1.2299-0.8401L7.4043,15.2065c-0.3535,0.0879-0.6318,0.3608-0.7256,0.7129 s0.0112,0.7275,0.2744,0.9795l13.9343,13.3583l-2.7649,17.1495c-0.1079,0.6712,0.4969,1.2576,1.1582,1.1445l18.0805-3.1324 l17.1832,9.6988c0.1523,0.0859,0.3218,0.1289,0.4917,0.1289c0.1523,0,0.3047-0.0347,0.4453-0.1045 c0.2969-0.1475,0.5015-0.4331,0.5459-0.7617l6.9639-51.5542C63.0031,2.7372,63.0007,2.6487,62.9891,2.5618z M9.647,16.7109 L56.8914,4.9902L22.2545,28.7978L9.647,16.7109z M36.9146,43.4663l-16.5942,2.875l2.4995-15.5054L58.8633,6.0615L36.9146,43.4663 z M54.2427,52.6504l-15.3231-8.6492l21.4231-36.509L54.2427,52.6504z'/%3E%3Cpath d='M14.4438,51.6099l-4.6948,5.209c-0.3701,0.4102-0.3369,1.0425,0.0732,1.4121c0.1909,0.1724,0.4307,0.2573,0.6689,0.2573 c0.2734,0,0.5459-0.1113,0.7432-0.3306l4.6948-5.209c0.3701-0.4102,0.3369-1.0425-0.0732-1.4121 C15.4463,51.1675,14.8135,51.2002,14.4438,51.6099z'/%3E%3Cpath d='M5.9478,29.0562l-4.6909,5.2085c-0.3696,0.4106-0.3364,1.043,0.0742,1.4126c0.1909,0.1719,0.4302,0.2568,0.6685,0.2568 c0.2739,0,0.5459-0.1113,0.7437-0.3311l4.6909-5.2085c0.3696-0.4106,0.3364-1.043-0.0742-1.4126 C6.9487,28.6128,6.3179,28.6455,5.9478,29.0562z'/%3E%3Cpath d='M40.8164,55.4331l-4.6909,5.2051c-0.3701,0.4102-0.3369,1.0425,0.0732,1.4121c0.1909,0.1724,0.4307,0.2573,0.6689,0.2573 c0.2734,0,0.5459-0.1113,0.7432-0.3306l4.6909-5.2051c0.3701-0.4102,0.3369-1.0425-0.0732-1.4121 C41.8188,54.9907,41.186,55.0234,40.8164,55.4331z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.form-header h2 {
    font-size: var(--font-size-3xl);
    color: var(--blue-dark);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-black);
    line-height: 1.2;
}

.form-description {
    font-size: var(--font-size-xl);
    color: var(--khaki-dark);
    line-height: var(--line-height-relaxed);
    opacity: 0.9;
}

.beingtogether-contact-form {
    background: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.3s ease;
}

.beingtogether-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--khaki) 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.beingtogether-contact-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(46, 80, 144, 0.15);
}

.form-row {
    margin-bottom: var(--spacing-lg);
}

.form-row label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--blue-dark);
}

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(46, 80, 144, 0.1);
    border-radius: var(--radius-base);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--blue-dark);
}

.form-row input[type="text"]::placeholder,
.form-row input[type="tel"]::placeholder,
.form-row input[type="email"]::placeholder,
.form-row textarea::placeholder {
    color: var(--khaki-dark);
    opacity: 0.6;
}

.form-row input[type="text"]:focus,
.form-row input[type="tel"]:focus,
.form-row input[type="email"]:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px var(--blue-pale);
    background: rgba(74, 123, 199, 0.02);
}

.form-row input.error,
.form-row textarea.error {
    border-color: #d32f2f;
    background: rgba(211, 47, 47, 0.02);
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.form-row textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.form-submit-button {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-xl);
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-md);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    min-width: 220px;
    text-align: center;
}

.form-submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--khaki);
    transition: left 0.3s;
    z-index: -1;
}

.form-submit-button .button-text,
.form-submit-button .button-loading {
    position: relative;
    z-index: 1;
}

.form-submit-button:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-submit-button:hover::before {
    left: 0;
}

.form-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.button-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    animation: rotate 2s linear infinite;
    width: 20px;
    height: 20px;
}

.spinner .path {
    stroke: white;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* Page Content Layout Styles */
.wp-block-content.content-layout-full-width {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 var(--spacing-2xl) !important;
}

.wp-block-content.content-layout-full-width .entry-content {
    max-width: 100% !important;
}

/* Boxed layout (default) - keep original constraints */
.wp-block-content.content-layout-boxed {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
    .wp-block-content.content-layout-full-width {
        padding: 0 var(--spacing-lg) !important;
    }
}

@media (max-width: 480px) {
    .wp-block-content.content-layout-full-width {
        padding: 0 var(--spacing-md) !important;
    }
}

.form-messages {
    margin-bottom: var(--spacing-lg);
}

.form-message {
    padding: 20px 24px;
    border-radius: var(--radius-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    animation: slideDown 0.3s ease;
    position: relative;
    padding-right: 60px;
}

.form-message::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    border-radius: 0 var(--radius-base) var(--radius-base) 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.form-message.success {
    background: var(--blue-pale);
    color: var(--blue-dark);
    border: 2px solid var(--blue-light);
}

.form-message.success::before {
    content: '✓';
    background: var(--blue);
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.form-message.error {
    background: rgba(211, 47, 47, 0.1);
    color: #d32f2f;
    border: 2px solid rgba(211, 47, 47, 0.3);
}

.form-message.error::before {
    content: '!';
    background: #d32f2f;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* Screen reader text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* RTL Support for Contact Form */
[dir="rtl"] .beingtogether-contact-form {
    text-align: right;
}

[dir="rtl"] .form-row input,
[dir="rtl"] .form-row textarea {
    text-align: right;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .documents-section {
        padding: 0 0 var(--spacing-2xl) 0;
    }
    
    .contact-form-container {
        padding: 0 15px;
    }
    
    .contact-form-container::before {
        right: 0;
        width: 200px;
        height: 200px;
        opacity: 0.1;
    }
    
    .beingtogether-contact-form {
        padding: var(--spacing-xl);
    }
    
    .form-submit-button {
        width: 100%;
    }
}