:root {
    --info-lighter: #d9edfe;
    --info-light: #8dbffb;
    --info-main: #4285f4;
    --info-dark: #214baf;
    --info-darker: #101f31;
    --info-contrast: #ffffff;
    --success-lighter: #dcfad8;
    --success-light: #86e48d;
    --success-main: #34a853;
    --success-dark: #46a370;
    --success-darker: #095038;
    --success-contrast: #ffffff;
    --warning-lighter: #fef9cc;
    --warning-light: #fde768;
    --warning-main: #fbcc05;
    --warning-dark: #b48b02;
    --warning-darker: #785800;
    --warning-contrast: #1c252e;
    --error-lighter: #fde6d6;
    --error-light: #f8a185;
    --error-main: #ea4335;
    --error-dark: #a81a27;
    --error-darker: #700a23;
    --error-contrast: #ffffff;
    --grey-50: #f6fbfb;
    --grey-100: #edf7f7;
    --grey-200: #ddefef;
    --grey-300: #b9cfd1;
    --grey-400: #8ca0a4;
    --grey-500: #546368;
    --grey-600: #3d5059;
    --grey-700: #2a3e4a;
    --grey-800: #1a2c3c;
    --grey-900: #101f31;
    --common-black: #000000;
    --common-white: #ffffff;
    --brand-primary: var(--success-darker);
    --brand-secondary: var(--grey-800);
    --brand-accent: var(--success-main);
    --brand-blue: var(--success-main);
    --text-heading: var(--grey-900);
    --text-body: var(--grey-600);
    --text-light: var(--grey-400);
    --white: var(--common-white);
    --bg-body: var(--grey-50);
    --bg-light: var(--grey-100);
    --bg-white: var(--common-white);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(66, 133, 244, 0.5);
    --container-width: 1200px;
    --nav-height: 90px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--success-main) var(--bg-light);
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background-color: var(--success-main);
    border-radius: 20px;
    border: 3px solid var(--bg-light);
}
:focus-visible {
    outline: 2px solid var(--brand-accent);
    outline-offset: 4px;
}
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
}
a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}
.section-gap {
    padding: 100px 0;
}
.bg-light {
    background: linear-gradient(180deg, var(--grey-50) 0%, var(--info-lighter) 100%);
}
.text-center {
    text-align: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--success-main) 0%, var(--info-main) 100%);
    color: var(--white);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.4);
}
.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--info-main) 0%, var(--success-main) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5);
    color: var(--white);
}
.btn-primary:hover::before {
    opacity: 1;
}
.btn-outline {
    border-color: var(--brand-secondary);
    color: var(--brand-secondary);
    background: transparent;
}
.btn-outline:hover {
    background-color: var(--brand-secondary);
    color: var(--white);
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.badge-glass {
    background: linear-gradient(135deg, var(--info-main) 0%, var(--success-main) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bg-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-body);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-accent);
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.hero {
    background: radial-gradient(circle at 10% 20%, var(--green-lighter) 0%, var(--grey-50) 40%);
    color: var(--white);
    padding: 180px 0 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, var(--success-light) 0%, transparent 60%);
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    animation: drift 10s infinite alternate;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, var(--info-main) 0%, transparent 60%);
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    animation: drift 12s infinite alternate-reverse;
}
@keyframes drift {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(30px, 50px);
    }
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 3.5rem;
    margin: 24px 0;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--grey-900);
}
.text-gradient {
    background: linear-gradient(135deg, var(--success-darker) 0%, var(--success-dark) 30%, var(--success-main) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(134, 228, 141, 0.3);
}
.hero-subtext {
    font-size: 1.25rem;
    color: var(--grey-700);
    margin-bottom: 40px;
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.subtitle {
    color: var(--brand-accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}
.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(52, 168, 83, 0.15);
    border-color: var(--success-light);
    background: white;
}
.icon-box {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    color: var(--brand-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.roadmap-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--bg-light);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.roadmap-card.highlight {
    border-top-color: var(--info-main);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}
.roadmap-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-width: 6px;
}
.phase-badge {
    background: var(--brand-accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}
.badge-blue {
    background: var(--brand-blue);
}
.badge-dark {
    background: var(--brand-primary);
}
.phase-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.check-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--brand-accent);
    font-size: 0.8rem;
}
.governance-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-light);
}
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.legal-item label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}
.legal-item code {
    font-family: "Courier New", monospace;
    font-size: 1rem;
    color: var(--brand-primary);
    font-weight: 600;
    background: var(--bg-light);
    padding: 4px 8px;
    border-radius: 4px;
}
.gov-note {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 16px;
}
.gov-note i {
    color: var(--brand-primary);
    font-size: 1.5rem;
}
footer {
    background: var(--brand-primary);
    color: var(--text-light);
    padding: 80px 0 30px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-logo {
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    height: 40px;
    width: auto;
}
.footer-col h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1rem;
}
.footer-col a {
    display: block;
    margin-bottom: 12px;
    color: var(--text-light);
}
.footer-col a:hover {
    color: var(--brand-accent);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}
.social-links a {
    color: var(--white);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.social-links a:hover {
    background: var(--brand-accent);
}
.page-header {
    background: var(--bg-white);
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--bg-light);
}
.page-header h1 {
    font-size: 3rem;
    margin: 16px 0;
}
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-light);
}
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 24px;
}
.card-icon.blue {
    background: var(--brand-blue);
}
.card-icon.green {
    background: var(--brand-accent);
}
.mission-list li {
    margin-bottom: 16px;
    padding-left: 0;
}
.mission-list strong {
    color: var(--brand-primary);
    display: block;
    margin-bottom: 4px;
}
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .governance-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .roadmap-card.highlight {
        transform: none;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--bg-light);
        display: none;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-actions .btn {
        flex: 1;
        padding: 12px 8px;
        font-size: 0.8rem;
        justify-content: center;
        white-space: nowrap;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }
    .mission-grid {
        grid-template-columns: 1fr;
    }
}
.phase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.phase-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border-top: 6px solid #ddd;
    position: relative;
    margin-top: 20px;
    transition: transform 0.3s ease;
}
.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.phase-1 {
    border-color: var(--success-light);
}
.phase-2 {
    border-color: var(--success-main);
}
.phase-3 {
    border-color: var(--success-dark);
}
.badge-phase {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.bg-green {
    background: var(--success-main);
}
.bg-blue {
    background: var(--success-dark);
}
.bg-red {
    background: var(--success-darker);
}
.phase-title {
    text-align: center;
    margin-top: 15px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.phase-duration {
    display: block;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.skill-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.skill-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-heading);
}
.skill-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-body);
}
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.mv-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--bg-light);
    transition: transform 0.3s ease;
}
.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--success-light);
}
.mv-header {
    padding: 20px 25px;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-blue {
    background: var(--success-darker);
}
.header-green {
    background: var(--success-main);
}
.mv-body {
    padding: 30px;
}
.mv-body ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--text-body);
}
.mv-body ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--success-main);
}
.legal-gallery-wrapper {
    margin-top: 60px;
    border-top: 1px solid var(--bg-light);
    padding-top: 40px;
}
.legal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-content: center;
}
.legal-doc-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.legal-doc-card:hover {
    transform: translateY(-5px);
}
.legal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.legal-card:hover {
  transform: translateY(-6px);
}
.legal-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 10px;
}
.legal-code {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #34A853;
  line-height: 1.4;
}
.doc-thumb {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--bg-light);
    aspect-ratio: 1/1.4;
    margin-bottom: 12px;
}
.doc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.legal-doc-card:hover .doc-thumb img {
    transform: scale(1.05);
}
.doc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 168, 83, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.legal-doc-card:hover .doc-overlay {
    opacity: 1;
}
.doc-overlay i {
    font-size: 2rem;
    color: var(--white);
}
.doc-caption {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-heading);
}
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}
.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 85vh;
    animation-name: zoom;
    animation-duration: 0.4s;
    position: relative;
    text-align: center;
}
#lightboxImage {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: inline-block;
}
.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 1.2rem;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}
.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--brand-accent);
    text-decoration: none;
    cursor: pointer;
}
@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}
@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 95%;
    }
}
.exec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.exec-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-light);
    position: relative;
    box-shadow: var(--shadow-sm);
}
.quotemark {
    font-size: 2rem;
    color: var(--brand-accent);
    opacity: 0.3;
    margin-bottom: 20px;
}
.exec-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-heading);
    margin-bottom: 30px;
}
.exec-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--bg-light);
    padding-top: 20px;
}
.exec-img-placeholder {
    width: 50px;
    height: 50px;
    background: var(--success-lighter);
    color: var(--success-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.exec-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}
.exec-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-content: center;
}
.board-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--bg-light);
    transition: transform 0.3s ease;
}
.board-card:hover {
    transform: translateY(-8px);
    border-color: var(--success-main);
    box-shadow: var(--shadow-lg);
}
.board-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
}
.board-card h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.board-card span {
    font-size: 0.85rem;
    color: var(--brand-primary);
    font-weight: 600;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-light);
    transition: transform 0.3s ease;
}
.info-item:hover {
    transform: translateY(-5px);
    border-color: var(--brand-accent);
    box-shadow: var(--shadow-sm);
}
.info-icon {
    width: 50px;
    height: 50px;
    background: var(--success-lighter);
    color: var(--success-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.info-details h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--text-heading);
}
.info-details p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}
.info-details a {
    color: var(--text-body);
    transition: color 0.3s ease;
}
.info-details a:hover {
    color: var(--brand-accent);
}
.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-light);
    box-shadow: var(--shadow-md);
}
.contact-form-container h3 {
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: var(--text-heading);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-heading);
}
.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--bg-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-body);
    background: var(--bg-body);
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-accent);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--success-lighter);
}
.contact-form button {
    margin-top: 10px;
    justify-content: center;
    width: 100%;
}
.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.success-message {
    background: var(--success-lighter);
    color: var(--success-darker);
    border: 1px solid var(--success-light);
}
.success-message i {
    font-size: 1.2rem;
}
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-form-container {
        padding: 30px;
    }
}