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

.about-us-page {
    width: 100%;
    min-height: 100vh;
    position: relative;
    font-family: "Lato", -apple-system, Roboto, Helvetica, sans-serif;
    background-color: #f6f6f6;
}

.main-navbar {
    display: flex;
    width: 100%;
    height: 116px;
    padding: 0 92px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    background-color: #fff;
}

@media (max-width: 991px) {
    .main-navbar {
        padding: 0 40px;
    }
}

@media (max-width: 640px) {
    .main-navbar {
        padding: 0 20px;
        height: auto;
        min-height: 80px;
        flex-wrap: wrap;
    }
}

.company-logo {
    width: 131px;
    height: 68px;
    flex-shrink: 0;
}

.navigation-menu {
    display: flex;
    align-items: center;
    align-self: stretch;
}

@media (max-width: 991px) {
    .navigation-menu {
        display: none;
    }
}

.nav-item {
    display: flex;
    padding: 0 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    background-color: #fff;
}

.nav-icon {
    width: 34px;
    height: 34px;
    aspect-ratio: 1/1;
}

.nav-label {
    color: #2e4257;
    font: 400 18px/150% "Lato", -apple-system, Roboto, Helvetica, sans-serif;
}

.auth-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

/* Hamburger style */
.hamburger {
    display: none;
    /* display: flex; */
    flex-direction: column;
    /* gap: 50px; */
    cursor: pointer;
    width: 40px;
    height: 30px;
    justify-content: space-between;
    /* align-items: space-between; */
    /* justify-content: center; */
}

.line-h {
    width: 40px;
    height: 5px;
    background-color: #000000;
    border-radius: 3px;
}


@media (max-width: 991px) {
    .auth-buttons {
        /* flex-direction: column; */
        gap: 8px;
        /* display: none; */
    }

    .hamburger {
        display: flex;
    }
}

.register-button {
    display: flex;
    width: 174px;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 2px solid #2e4257;
    background: transparent;
    color: #2e4257;
    font: 700 20px/150% "Lato", -apple-system, Roboto, Helvetica, sans-serif;
    cursor: pointer;
}
@media (max-width: 991px) {
    .register-button {
        display: none;
    }

}


@media (max-width: 640px) {
    .register-button {
        width: 120px;
        padding: 8px 16px;
        font-size: 16px;
    }
}

.login-button {
    display: flex;
    width: 174px;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background-color: #0b66c3;
    border: none;
    color: #fff;
    font: 700 20px/150% "Lato", -apple-system, Roboto, Helvetica, sans-serif;
    cursor: pointer;
}
@media (max-width: 991px) {
    .login-button {
      display: none;
    }
}
@media (max-width: 640px) {
    .login-button {
        width: 120px;
        padding: 8px 16px;
        font-size: 16px;
    }
}

.press-hero-section {
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    text-align: center;
}

.hero-overlay .small {
    color: #052340;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-overlay .big {
    color: #052340;
    font-family: "Lato", sans-serif;
    font-size: 55px;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 768px) {
    .hero-overlay .big {
        font-size: 30px;
    }

    .hero-overlay .small {
        font-size: 16px;
    }
}

.press-hero-section {
    width: 100%;
    height: 303px;
    position: relative;
    border-bottom: 1px solid rgba(56, 133, 212, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #d6eaff;
}

.hero-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.main-content {
    display: flex;
    width: 100%;
    max-width: 1325px;
    flex-direction: column;
    align-items: flex-start;
    gap: 46px;
    margin: 0 auto;
    padding: 46px 93px;
}

@media (max-width: 991px) {
    .main-content {
        padding: 46px 40px 0;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .main-content {
        padding: 30px 20px 0;
        gap: 30px;
    }
}

.news-article {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

@media (max-width: 991px) {
    .news-article {
        flex-direction: column;
        gap: 20px;
    }
}

.article-image {
    width: 70%;
    height: 304px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 991px) {
    .article-image {
        width: 100%;
        max-width: 460px;
    }
}

.article-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

@media (max-width: 991px) {
    .article-content {
        width: 100%;
        max-width: 841px;
    }
}

.article-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-icon {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
}

.date-text {
    width: 82px;
    color: #000;
    font: 700 14px "Inter", -apple-system, Roboto, Helvetica, sans-serif;
}

.article-title {
    width: 100%;
    color: #000;
    font: 700 40px/130% "Lato", -apple-system, Roboto, Helvetica, sans-serif;
    margin: 0;
}

@media (max-width: 991px) {
    .article-title {
        width: 100%;
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .article-title {
        font-size: 24px;
    }
}

.article-description {
    width: 100%;
    color: #000;
    font: 400 16px/130% "Lato", -apple-system, Roboto, Helvetica, sans-serif;
    margin: 0;
}

@media (max-width: 991px) {
    .article-description {
        font: 400 16px/130% "Lato", -apple-system, Roboto, Helvetica, sans-serif;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .article-description {
        font-size: 16px;
    }
}

.read-more-button {
    display: flex;
    width: 207px;
    padding: 21px 56px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    background-color: #0b66c3;
    border: none;
    color: #fff;
    white-space: nowrap;
    font: 700 20px/1 "Lato", -apple-system, Roboto, Helvetica, sans-serif;
    cursor: pointer;
}

.read-more-button:hover {
    background-color: #0a5aa3;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 640px) {
    .read-more-button {
        width: 150px;
        padding: 15px 30px;
        font-size: 16px;
    }
}


.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.footer-links {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px;
    flex: 1 0 0;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

.footer-column {
    display: flex;
    width: 213px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

@media (max-width: 991px) {
    .footer-column {
        width: calc(50% - 20px);
        min-width: 200px;
    }
}

@media (max-width: 640px) {
    .footer-column {
        width: 100%;
    }
}

.footer-heading {
    color: #fff;
    font: 700 20px/130% "Lato", -apple-system, Roboto, Helvetica, sans-serif;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-link {
    color: #dde9f3;
    font: 400 18px/150% "Lato", -apple-system, Roboto, Helvetica, sans-serif;
    text-decoration: none;
}

.footer-link.featured {
    background: linear-gradient(72deg, #3d91ff 26.48%, #a96fff 57.3%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.footer-logo {
    width: 131px;
    height: 68px;
}

.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.social-text {
    color: #c4c4c4;
    font: 400 20px/150% "Lato", -apple-system, Roboto, Helvetica, sans-serif;
    margin: 0;
}

@media (max-width: 640px) {
    .social-text {
        font-size: 16px;
        text-align: center;
    }
}

.social-icons {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

@media (max-width: 640px) {
    .social-icons {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.social-icon {
    width: 32px;
    height: 32px;
    aspect-ratio: 1/1;
}

.copyright {
    color: #c4c4c4;
    font: 400 20px/150% "Lato", -apple-system, Roboto, Helvetica, sans-serif;
    margin: 0;
}

@media (max-width: 640px) {
    .copyright {
        font-size: 16px;
        text-align: center;
    }
}

.hero-bg-image {
    width: 100%;
    height: 100%;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Enhanced Tabs for news / press panels */
.tabs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 32px;
    border-bottom: 2px solid rgba(46, 66, 87, 0.1);
    padding-bottom: 0;
}

.tab-button {
    position: relative;
    background: transparent;
    border: none;
    padding: 14px 28px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: #2e4257;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Lato", -apple-system, Roboto, Helvetica, sans-serif;
    letter-spacing: 0.3px;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0b66c3 0%, #3d91ff 100%);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px 3px 0 0;
}

.tab-button:hover {
    background: rgba(11, 102, 195, 0.05);
    color: #0b66c3;
}

.tab-button.active {
    background: rgba(11, 102, 195, 0.08);
    color: #0b66c3;
    font-weight: 700;
}

.tab-button.active::after {
    transform: scaleX(1);
}

.tab-button:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.tab-panel {
    margin-top: 0;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-panel[hidden] {
    display: none !important;
}

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

