@font-face {
    font-family: 'Lequire';
    src: url('./lequire/Lequire.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Caviar Dreams';
    src: url('./caviar_dreams/CaviarDreams.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Caviar Dreams';
    src: url('./caviar_dreams/CaviarDreams_Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Caviar Dreams';
    src: url('./caviar_dreams/CaviarDreams_Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Caviar Dreams';
    src: url('./caviar_dreams/CaviarDreams_BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

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

body {
    font-family: 'Caviar Dreams', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Navigation */
.navbar {
    background: linear-gradient(165deg, #000000 0%, #1e3a8a 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    width: calc(100% - 2rem);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    font-family: 'Lequire', sans-serif;
    font-size: 1.44rem;
    color: #fff;
    text-decoration: none;
    text-transform: lowercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    flex: 1;
    justify-content: space-evenly;
    list-style: none;
    gap: 0;
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00d4ff;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
    padding: 0;
}

.main-content-home {
    margin-top: 0;
    min-height: calc(100vh - 160px);
    padding: 0;
}

.hero-section {
    background-image:
        url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="40" height="40" fill="none" stroke="%23b0b0b0" stroke-width="2"/><line x1="0" y1="0" x2="40" y2="40" stroke="%23b0b0b0" stroke-width="1"/><line x1="40" y1="0" x2="0" y2="40" stroke="%23b0b0b0" stroke-width="1"/></svg>'),
        linear-gradient(120deg, #eaecef 0%, #b8c2cc 15%, #8fa3bf 25%, #eaecef 100%);
    background-size: 40px 40px, 200% 200%;
    background-position: top left, 0% 50%;
    background-repeat: repeat, no-repeat;
    animation: hero-gradient-move 12s linear infinite alternate;
    color: #333;
    padding: 6rem 2rem 4rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

@keyframes hero-gradient-move {
    /* 0% {
        background-position: top left, 0% 50%;
    }
    100% {
        background-position: top left, 100% 50%;
    } */
    0% {
      background-position: top left, 100% 0%;
  }
  100% {
      background-position: top left, 0% 0%;
  }
}

.hero-title {
    font-family: 'Lequire', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
    letter-spacing: 2px;
    color: #333;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    color: #666;
}

.hero-image {
    width: 70%;
    max-width: none;
    height: auto;
}

.content-section {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content-section:first-of-type {
    margin-top: 0;
}

.section-title {
    font-family: 'Lequire', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: lowercase;
    letter-spacing: 1px;
    color: #2f3d5e;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.content-section p {
    margin-bottom: 1.5rem;
}

.content-bullets {
    margin-left: 2.5rem;
    margin-top: 0;
    margin-bottom: 2rem;
}

.content-bullets li {
    margin-bottom: 1.2rem;
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section h3 {
    font-family: 'Lequire', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .content-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .main-content {
        padding: 1rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

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

.split-section {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.split-panel {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
    justify-content: space-between;
}

.left-panel {
    margin-right: 0.5rem;
}

.right-panel {
    margin-left: 0.5rem;
}

@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .left-panel, .right-panel {
        margin: 0;
    }
}

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

.split-panel .section-content {
    font-size: 0.98rem;
}

.cta-button.cta-dark {
    background: #1e3a8a;
    color: #fff;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 1.2rem;
    display: inline-block;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(30,58,138,0.08);
}

.cta-button.cta-dark:hover {
    background: #16306b;
    color: #fff;
    box-shadow: 0 4px 16px rgba(30,58,138,0.18);
}

.left-panel .section-content,
.right-panel .section-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.left-panel .section-content p,
.right-panel .section-content p {
    align-self: flex-start;
    margin-bottom: 0.8rem;
}

.contact-panel {
    max-width: 600px;
    margin: 3rem auto 0 auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-panel .section-title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-end;
}

.contact-form .form-group {
    width: 100%;
    align-items: stretch;
}

.contact-form .cta-button {
    margin-top: 0.5rem;
    align-self: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 1rem;
    color: #2f3d5e;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.7rem 1rem;
    border: 1.5px solid #b8c2cc;
    border-radius: 8px;
    background: #f8f9fa;
    color: #222;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3a5ba8;
    outline: none;
}

.cta-button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
} 

.container-wall-feed .rssapp-title-header {
  display: none !important
}

rssapp-ticker {
    display: block;
    width: 100%;
    margin-bottom: 2.5rem;
}

.press-list {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.press-list li {
    margin-bottom: 1rem;
    font-size: 1.08rem;
    list-style: none;
}

.press-list a {
    color: #1e3a8a;
    text-decoration: underline;
    transition: color 0.2s;
}

.press-list a:hover {
    color: #3a5ba8;
    text-decoration: none;
}

.press-release-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    padding: 1rem 1.5rem 1.2rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: box-shadow 0.2s;
    list-style: none;
}
.press-release-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.press-date {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.press-headline {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    transition: color 0.2s;
}
.press-headline:hover {
    color: #0056b3;
    text-decoration: underline;
}
.press-summary {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 0.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
    min-height: 4.8em;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
@media (max-width: 900px) {
    .leadership-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}
.leader-panel {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s;
}
.leader-panel:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.09);
}
.leader-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.1rem;
    background: #f0f0f0;
}
.leader-name {
    font-family: 'Lequire', sans-serif;
    font-size: 1.18rem;
    font-weight: bold;
    color: #2f3d5e;
    margin-bottom: 0.3rem;
}
.leader-title {
    font-size: 1.02rem;
    color: #7a7a7a;
    margin-bottom: 0.8rem;
    font-weight: 500;
}
.leader-bio {
    font-size: 1.01rem;
    color: #444;
    line-height: 1.6;
}

.leader-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lequire', 'Caviar Dreams', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #888;
    margin-bottom: 1.1rem;
    user-select: none;
}

#team {
    scroll-margin-top: 90px;
}