@font-face {
  font-family: 'Union Gothic';
  src: url('union_gothic-variable.ttf') format('truetype');
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #ffffff;
    color: #2C1810;
    line-height: 1.6;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #004aad;
    padding: 1em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.sticky-header.visible {
    transform: translateY(0);
}

.sticky-header.visible.menu-open {
    transform: translateY(-100%);
}

.header-logo {
    height: 80px;
    width: auto;
    max-width: 400px;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu:hover span {
    background: #E8DCC8;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: #004aad;
    display: flex;
    flex-direction: column;
    padding: 6em 3em 2em;
    gap: 1.5em;
    z-index: 999;
    transition: right 0.4s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.menu-panel.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 3em;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-menu:hover {
    color: #E8DCC8;
    transform: rotate(90deg);
}

.menu-link {
    font-family: 'Union Gothic', Georgia, 'Times New Roman', serif;
    font-size: 1.5em;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5em 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.menu-link:hover {
    color: #E8DCC8;
    border-bottom-color: #E8DCC8;
}

.hero-section {
    background-color: #004aad;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2em;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 2em;
    display: block;
}

.hero-content h1 {
    margin-top: 0;
}

.hero-content h2 {
    margin-top: 0.8em;
}

.hero-content p {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
}

.hero-content p:last-child {
    margin-bottom: 0;
}

h1 {
    font-size: 2.8em;
    font-family: 'Union Gothic', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h2 {
    font-family: 'Union Gothic', Georgia, 'Times New Roman', serif;
    font-size: 1.4em;
    font-weight: 400;
    color: #3D2415;
    margin-bottom: 1.5em;
    letter-spacing: 0.01em;
}

p {
    font-size: 1em;
    line-height: 1.6;
    color: #2C1810;
    max-width: 800px;
    margin: 0 auto;
}

a {
    color: #000000;
    text-decoration: underline;
    font-weight: 500;
}

a:hover {
    color: #1d1d1d;
    text-decoration: underline;
}

b {
    font-weight: 700;
    color: #1A0F08;
    letter-spacing: 0.05em;
}

footer {
    width: 100%;
    padding: 1.5em 2em;
    background-color: #000000;
    border-top: 3px solid #ffffff;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

footer a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}

footer a:hover {
    color: #E8DCC8;
    text-decoration: underline;
}

footer p {
    margin: 0;
    font-size: 0.95em;
    color: #ffffff;
    font-weight: 500;
}

#google_translate_element {
    display: flex;
    align-items: center;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}


@media (max-width: 768px) {
    footer {
        flex-direction: column;
        gap: 1em;
        text-align: center;
    }
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3em;
    padding: 3em 10%;
    background-color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.about-content {
    flex: 1;
    text-align: left;
}

.about-content h3 {
    font-family: 'Union Gothic', Georgia, 'Times New Roman', serif;
    font-size: 2em;
    font-weight: 700;
    color: #1A0F08;
    margin-bottom: 0.5em;
    letter-spacing: 0.01em;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #2C1810;
    margin-bottom: 1.5em;
}

.about-btn {
    display: inline-block;
    padding: 0.9em 2.5em;
    background-color: #c1ff72;
    color: #1A0F08;
    border: none;
    border-radius: 50px;
    font-family: 'Union Gothic', Georgia, 'Times New Roman', serif;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    margin-top: 1em;
    margin-bottom: 1.5em;
    box-shadow: 0 4px 12px rgba(193, 255, 114, 0.3);
}

.about-btn:hover {
    background-color: #a8e85a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(193, 255, 114, 0.4);
}

.about-image {
    flex-shrink: 0;
}

.about-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 3px solid #8B6F47;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.platform-section {
    padding: 4em 10%;
    background-color: #ffffff;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.platform-section h2 {
    font-family: 'Union Gothic', Georgia, 'Times New Roman', serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #1A0F08;
    margin-bottom: 1em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.platform-items {
    max-width: 800px;
    margin: 0 auto;
}

.platform-item {
    margin-bottom: 1em;
    border-radius: 10px;
    overflow: hidden;
    border-left: 5px solid #004aad;
    background-color: rgba(0, 74, 173, 0.05);
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-header:hover {
    background-color: rgba(0, 74, 173, 0.1);
}

.platform-title {
    font-family: 'Union Gothic', Georgia, 'Times New Roman', serif;
    font-size: 1.5em;
    font-weight: 600;
    color: #1A0F08;
    text-align: left;
}

.caret {
    font-size: 1.2em;
    color: #004aad;
    transition: transform 0.3s ease;
}

.platform-item.active .caret {
    transform: rotate(-180deg);
}

.platform-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2em;
}

.platform-item.active .platform-content {
    max-height: 500px;
    padding: 0 2em 1.5em;
    overflow-y: auto;
    overflow-x: hidden;
}

.platform-content p {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1em;
    line-height: 1.6;
    color: #2C1810;
    text-align: left;
    margin: 0;
}

.accomplishments-section {
    padding: 4em 10%;
    background-color: #004aad;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.accomplishments-section h2 {
    font-family: 'Union Gothic', Georgia, 'Times New Roman', serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.accomplishments-section ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.accomplishments-section li {
    font-family: 'Union Gothic', Georgia, 'Times New Roman', serif;
    font-size: 1.5em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5em;
    padding: 1em 2em;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 5px solid #c1ff72;
    text-align: left;
    transition: all 0.3s ease;
}

/* Popup Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #ffffff;
    padding: 2.5em;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.5s ease;
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 2.5em;
    line-height: 1;
    cursor: pointer;
    color: #004aad;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.popup-close:hover {
    background-color: rgba(0, 74, 173, 0.1);
    transform: rotate(90deg);
    color: #002a66;
}

.popup-content h2 {
    font-family: 'Union Gothic', Georgia, 'Times New Roman', serif;
    font-size: 2em;
    font-weight: 700;
    color: #004aad;
    margin-top: 0;
    margin-bottom: 0.8em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.popup-content p {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1em;
    line-height: 1.6;
    color: #2C1810;
    margin-bottom: 1em;
    text-align: left;
}

.popup-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .popup-content {
        padding: 2em;
        max-width: 70%;
        max-height: 70%;

    }
    
    .popup-content h2 {
        font-size: 1.5em;
    }
    
    .popup-content p {
        font-size: 1em;
    }
}

.accomplishments-section li:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-image img {
        width: 250px;
        height: 250px;
    }
}