/*
Theme Name: Fondation Tutator
Theme URI: https://fondationtutator.org
Author: Fondation Tutator
Author URI: https://fondationtutator.org
Description: Custom WordPress theme for Fondation Tutator - Supporting Digital Transformation Across the World. Requires Contact Form 7 plugin for the contact page.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fondation-tutator
*/

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

:root {
    --blue: #3074b4;
    --turquoise: #65d1b1;
    --gold: #e8b84a;
    --cream: #f5efe6;
    --white: #ffffff;
    --text-dark: #333333;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== HEADER - ORIGINAL STYLE ===== */
.site-header {
    background: var(--white);
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 45px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-nav a {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--turquoise);
    transition: width 0.3s ease;
}

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

.main-nav a:hover {
    color: var(--blue);
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    margin-left: 20px;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    border-color: var(--turquoise);
}

.language-btn .flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.language-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--text-dark);
    transition: transform 0.3s ease;
}

.language-dropdown:hover .language-btn svg {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.language-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s ease;
}

.language-menu a:hover {
    background: var(--cream);
}

.language-menu a::after {
    display: none;
}

.flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.language-menu .flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

/* ===== HERO SECTION ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.hero-content {
    background: var(--blue);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 16px;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.impact-badge {
    background: var(--gold);
    color: var(--blue);
    padding: 15px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    width: fit-content;
    text-decoration: none;
    transition: all 0.3s ease;
}

.impact-badge:hover {
    background: #d4a63d;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--blue);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* ===== ABOUT US SECTION ===== */
.about {
    padding: 80px 60px;
    background: var(--white);
}

.about-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.about-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
}

.about-header p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #e0e0e0;
}

.about-card {
    padding: 50px 40px;
    background: var(--white);
}

.about-card:nth-child(2) {
    background: var(--cream);
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

.about-card .number {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ===== OUR WORK IN NUMBERS ===== */
.numbers {
    background: var(--blue);
    padding: 80px 60px;
    color: var(--white);
}

.numbers-label {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--white);
    opacity: 0.7;
    margin-bottom: 10px;
}

.numbers h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.number-item {
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.number-item .big-number {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.number-item p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

/* ===== WHO WE PARTNER WITH SECTION ===== */
.partners {
    background: var(--cream);
    padding: 80px 60px;
}

.partners-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.partners-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.partners-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.partners-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--blue), transparent);
    padding: 10px 15px;
    margin-bottom: 12px;
    border-radius: 4px;
}

.partners-content .criteria-intro {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.partner-criteria {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.criteria-item {
    background: var(--white);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-radius: 4px;
}

.criteria-number {
    background: var(--gold);
    color: var(--blue);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.criteria-item p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.partners-visual {
    position: relative;
    padding: 30px;
}

.partners-visual-header {
    text-align: left;
    margin-bottom: 20px;
}

.partners-visual-header p {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    padding: 10px 15px;
    display: block;
    border-radius: 4px;
}

.partners-image-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.partners-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    aspect-ratio: 10/9;
    object-fit: cover;
}

.grant-card {
    position: absolute;
    background: var(--white);
    padding: 18px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 180px;
}

.grant-card-top {
    top: 0;
    right: -40px;
}

.grant-card-bottom {
    bottom: 40px;
    left: -40px;
}

.grant-card-icon {
    background: var(--gold);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.grant-card-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--blue);
}

.grant-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.grant-card p {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
}

.grant-card-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.grant-card-link:hover {
    color: var(--turquoise);
}

/* ===== FOR PHILANTHROPISTS SECTION - CLEAN REDESIGN ===== */
.philanthropists {
    background: 
        radial-gradient(circle at 10% 20%, rgba(101, 209, 177, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(232, 184, 74, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 10%, rgba(101, 209, 177, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 20% 90%, rgba(48, 116, 180, 0.15) 0%, transparent 35%),
        linear-gradient(160deg, rgba(48, 116, 180, 0.9) 0%, var(--blue) 40%, rgba(35, 85, 140, 1) 100%);
    padding: 80px 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.philanthropists::before {
    display: none;
}

.philanthropists::after {
    display: none;
}

.phil-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.phil-circle-tr-outer {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border: 1.5px solid rgba(101, 209, 177, 0.1);
}

.phil-circle-tr-inner {
    top: 0px;
    right: 0px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(101, 209, 177, 0.12);
}

.phil-circle-bl-outer {
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    border: 1.5px solid rgba(232, 184, 74, 0.08);
}

.phil-circle-bl-inner {
    bottom: -50px;
    left: 0px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(232, 184, 74, 0.1);
}

.phil-circle-mid {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.philanthropists .philanthropists-header::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(101, 209, 177, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.philanthropists .philanthropists-header {
    position: relative;
}

.philanthropists .impact-section {
    position: relative;
    z-index: 1;
}

.philanthropists .philanthropists-intro {
    position: relative;
    z-index: 1;
}

.philanthropists-header {
    text-align: center;
    margin-bottom: 60px;
}

.philanthropists-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.philanthropists-header h2 span {
    color: var(--gold);
    font-style: italic;
}

.philanthropists-header .subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.philanthropists-content {
    max-width: 1100px;
    margin: 0 auto;
}

.philanthropists-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.philanthropists-intro p {
    font-size: 16px;
    line-height: 1.9;
    opacity: 0.9;
    margin: 0;
}

.impact-section {
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
}

.impact-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.impact-section-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.impact-card {
    background: rgba(255,255,255,0.1);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.impact-card-icon {
    background: var(--turquoise);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.impact-card-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.impact-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA SECTION - FULL WIDTH ===== */
.cta-section {
    text-align: center;
    position: relative;
    padding: 80px 60px 100px;
    background: 
        linear-gradient(135deg, rgba(48, 116, 180, 0.2) 0%, rgba(48, 116, 180, 0.08) 30%, transparent 50%),
        linear-gradient(225deg, rgba(101, 209, 177, 0.25) 0%, rgba(101, 209, 177, 0.08) 30%, transparent 50%),
        linear-gradient(315deg, rgba(48, 116, 180, 0.15) 0%, transparent 40%),
        linear-gradient(45deg, rgba(101, 209, 177, 0.2) 0%, transparent 40%),
        var(--white);
    overflow: hidden;
    color: var(--text-dark);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 0% 100%, rgba(101, 209, 177, 0.4) 0%, transparent 25%),
        radial-gradient(circle at 100% 0%, rgba(48, 116, 180, 0.35) 0%, transparent 25%),
        radial-gradient(circle at 100% 100%, rgba(48, 116, 180, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 0% 0%, rgba(101, 209, 177, 0.25) 0%, transparent 20%);
    pointer-events: none;
    animation: subtleMove 15s ease-in-out infinite alternate;
}

@keyframes subtleMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(2%, 2%); }
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(48, 116, 180, 0.15) 0%, transparent 20%, transparent 80%, rgba(101, 209, 177, 0.2) 100%),
        linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section .catalyst-text {
    font-size: 18px;
    opacity: 0.85;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cta-section .highlight-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 35px;
    line-height: 1.7;
    color: var(--blue);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--blue);
    padding: 20px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f5c65a;
    transform: translateY(-3px);
}

.cta-button svg {
    width: 22px;
    height: 22px;
    fill: var(--blue);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--blue);
    padding: 60px 60px 30px;
    color: var(--white);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--white);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-newsletter h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-newsletter > p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-right: none;
    background: transparent;
    color: var(--white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form button {
    padding: 15px 25px;
    background: var(--gold);
    color: var(--blue);
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #d4a63d;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* ===== PAGE INDICATORS ===== */

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: 80px 60px;
    background: var(--white);
}

.contact-page h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--cream);
    padding: 50px;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #2563a0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 400px;
    }

    .about-header {
        grid-template-columns: 1fr;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-card:nth-child(2) {
        border-left: none;
        border-right: none;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
    }

    .partners-container {
        grid-template-columns: 1fr;
    }

    .partners-visual {
        order: -1;
    }

    .partners-image-container {
        max-width: 350px;
    }

    .grant-card-top {
        right: -20px;
    }

    .grant-card-bottom {
        left: -20px;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .philanthropists-intro {
        grid-template-columns: 1fr;
    }

    .impact-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
.site-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        gap: 20px;
    }

    .hero-content {
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .about,
    .partners,
    .numbers,
    .contact-page {
        padding: 50px 20px;
    }

    .philanthropists {
        padding: 50px 20px;
    }

    .impact-section {
        padding: 30px 20px;
    }

    .about-header h2,
    .partners-content h2,
    .numbers h2,
    .philanthropists-header h2,
    .contact-page h1 {
        font-size: 32px;
    }

.site-footer {
        padding: 40px 20px 20px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }
}

/* ===== Contact Form 7 Styling ===== */
.contact-form-container .wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 8px;
}

.contact-form-container .wpcf7-form input[type="text"],
.contact-form-container .wpcf7-form input[type="email"],
.contact-form-container .wpcf7-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.contact-form-container .wpcf7-form input:focus,
.contact-form-container .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.contact-form-container .wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-container .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-container .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 16px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-container .wpcf7-form input[type="submit"]:hover {
    background: #2563a0;
}

@media (max-width: 1024px) {
    .contact-form-container .form-row {
        grid-template-columns: 1fr;
    }
}
