     
/* Enhanced Styles - Адаптированные стили для страницы "Über uns" */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    color: #444;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Enhanced Header Styles */
.header {
    background: linear-gradient(135deg, #00539C 0%, #3D5AF1 100%);
    position: relative;
    z-index: 1000;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 214, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.header .container-fluid {
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.header-top {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 15px;
    gap: 15px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.brand-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.brand-logo:hover {
    transform: translateY(-2px);
}

.brand-logo:hover::before {
    opacity: 1;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.brand-logo:hover .logo-img {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 214, 98, 0.6);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.3px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brand-tagline {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 3px;
    opacity: 0.9;
}

.topbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-col a {
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.topbar-col a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 214, 98, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.topbar-col a:hover {
    color: #FFD662;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.topbar-col a:hover::before {
    opacity: 1;
}

.topbar-col a i {
    color: #FFD662;
    font-size: 15px;
    transition: all 0.3s ease;
}

.topbar-social {
    display: flex;
    gap: 8px;
}

.topbar-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.topbar-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFD662;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.topbar-social a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.topbar-social a:hover::before {
    opacity: 1;
}

.topbar-social a i {
    color: white;
    font-size: 16px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.topbar-social a:hover i {
    color: #00539C;
    transform: rotate(360deg);
}

/* Enhanced Navigation */
.navbar-container {
    padding: 20px 30px;
    background: transparent;
}

.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 0 25px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 0 rgba(255, 255, 255, 0.8) inset;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD662, #3D5AF1, #FFD662);
}

.navbar-brand {
    font-weight: 600;
    color: #00539C !important;
    padding: 15px 0;
    display: none;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: 8px;
    background: rgba(61, 90, 241, 0.1);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(61, 90, 241, 0.2);
}

.navbar-nav {
    gap: 5px;
    padding: 10px 0;
}

.nav-link {
    color: #555 !important;
    font-weight: 500;
    font-size: 14.5px;
    padding: 12px 18px !important;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(61, 90, 241, 0.15), transparent);
    transition: left 0.6s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #3D5AF1 !important;
    background: linear-gradient(135deg, rgba(61, 90, 241, 0.08) 0%, rgba(61, 90, 241, 0.04) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 90, 241, 0.15);
}

.nav-link i {
    font-size: 15px;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.2);
    color: #3D5AF1;
}

.nav-link.active i {
    color: #3D5AF1;
    animation: bounce 0.5s ease;
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    margin-top: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: #555;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(61, 90, 241, 0.1) 0%, rgba(61, 90, 241, 0.05) 100%);
    color: #3D5AF1;
    transform: translateX(5px);
}

/* Page Header Styles for "Über uns" */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #00539C 0%, #3D5AF1 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 214, 98, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.page-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header a {
    color: #FFD662;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.page-header a:hover {
    color: white;
    text-decoration: underline;
}

.page-header a + a::before {
    content: '/';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

/* Enhanced About Section for "Über uns" */
.about {
    padding: 100px 0;
    background: white;
}

.about-video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 50px;
}

.about-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 83, 156, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.embed-responsive {
    border-radius: 20px;
    overflow: hidden;
}

.about-text h2 {
    color: #00539C;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 20px;
}

.about-text h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD662, #3D5AF1);
    border-radius: 2px;
}

.about-text h2 span {
    color: #FFD662;
    position: relative;
    background: linear-gradient(120deg, 
        rgba(255, 214, 98, 0.15) 0%, 
        rgba(255, 214, 98, 0.05) 100%);
    padding: 0 10px;
    margin: 0 5px;
    border-radius: 6px;
    display: inline-block;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.about-text .btn {
    background: linear-gradient(135deg, #3D5AF1 0%, #4A7DFF 100%);
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(61, 90, 241, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.about-text .btn:hover {
    background: linear-gradient(135deg, #2a48d0 0%, #3a6bff 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(61, 90, 241, 0.3);
}

/* Story Section Styles */
.story {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header p {
    color: #3D5AF1;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(61, 90, 241, 0.1) 0%, rgba(61, 90, 241, 0.05) 100%);
    border-radius: 25px;
    border: 1px solid rgba(61, 90, 241, 0.2);
}

.section-header h2 {
    color: #00539C;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.story-container {
    position: relative;
    padding: 50px 0;
}

.story-launch {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.story-launch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD662, #3D5AF1);
    border-radius: 2px;
}

.story-box h3 {
    color: #00539C;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.story-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* Enhanced Team Section */
.team {
    padding: 100px 0;
    background: white;
}

.team-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.team-img {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.team-item:hover .team-img img {
    transform: scale(1.1);
}

.team-text {
    padding: 30px;
    text-align: center;
}

.team-text h2 {
    color: #00539C;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-text h3 {
    color: #666;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

.team-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #FFD662;
    border-radius: 1px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 90, 241, 0.1);
    border-radius: 10px;
    color: #3D5AF1;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: #3D5AF1;
    color: white;
    transform: translateY(-3px);
}

/* Enhanced Footer */
.footer {
    margin-top: auto;
    background: linear-gradient(135deg, #0a1f44 0%, #00539C 100%);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD662, #3D5AF1, transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(255, 214, 98, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.footer .container {
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.footer h2 {
    color: #FFD662;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 20px;
    position: relative;
    letter-spacing: 0.3px;
}

.footer h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #FFD662;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-contact:hover h2::after,
.footer-link:hover h2::after,
.footer-form:hover h2::after {
    width: 80px;
}

.footer-contact p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact p i {
    color: #FFD662;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFD662;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    background: transparent;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    color: white;
    font-size: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.footer-social a:hover i {
    color: #00539C;
    transform: rotate(360deg);
}

.footer-link a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    text-decoration: none;
}

.footer-link a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #FFD662;
    font-weight: bold;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.footer-link a:hover {
    color: #FFD662;
    padding-left: 30px;
    transform: translateX(5px);
}

.footer-link a:hover::before {
    transform: translateX(5px);
}

.footer-form input {
    width: 100%;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.footer-form input:focus {
    border-color: #FFD662;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(255, 214, 98, 0.15);
    outline: none;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer-form .btn {
    width: 100%;
    background: linear-gradient(135deg, #FFD662 0%, #FFE082 100%);
    color: #000;
    font-weight: 700;
    padding: 18px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.footer-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.footer-form .btn:hover::before {
    opacity: 1;
}

/* Footer Menu */
.footer-menu {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 60px;
    position: relative;
}

.footer-menu::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: #FFD662;
}

.f-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.f-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.f-menu a::after {
    content: '•';
    position: absolute;
    right: -18px;
    color: rgba(255, 255, 255, 0.4);
    top: 50%;
    transform: translateY(-50%);
}

.f-menu a:last-child::after {
    display: none;
}

.f-menu a:hover {
    color: #FFD662;
    transform: translateY(-2px);
}

/* Copyright */
.copyright {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    background: rgba(0, 0, 0, 0.1);
    text-align: center;
    letter-spacing: 0.3px;
}

.copyright .fa-heart {
    color: #ff6b6b;
    margin: 0 5px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    display: none;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3D5AF1 0%, #4A7DFF 100%);
    color: white;
    border-radius: 15px;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(61, 90, 241, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #2a48d0 0%, #3a6bff 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 40px rgba(61, 90, 241, 0.4);
}

/* Animations */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .header .container-fluid {
        padding: 0 20px;
    }
    
    .page-header h2,
    .about-text h2,
    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .header-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .topbar {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .brand-logo {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .story-launch {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 20px;
    }
    
    .navbar-container {
        padding: 15px 20px;
    }
    
    .navbar {
        padding: 0 15px;
        border-radius: 12px;
    }
    
    .navbar-brand {
        display: block;
    }
    
    .nav-link {
        padding: 10px 15px !important;
        font-size: 14px;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h2 {
        font-size: 32px;
    }
    
    .about,
    .story,
    .team {
        padding: 80px 0;
    }
    
    .about-video {
        margin-bottom: 40px;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .team-img {
        height: 300px;
    }
    
    .footer .container {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .f-menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .f-menu a::after {
        display: none;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        line-height: 50px;
        right: 20px;
        bottom: 20px;
        font-size: 18px;
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .brand-name {
        font-size: 20px;
    }
    
    .brand-tagline {
        font-size: 11px;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .topbar {
        gap: 10px;
    }
    
    .topbar-col a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .topbar-social a {
        width: 36px;
        height: 36px;
    }
    
    .page-header {
        padding: 80px 0 30px;
    }
    
    .page-header h2 {
        font-size: 28px;
    }
    
    .about,
    .story,
    .team {
        padding: 60px 0;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-text .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 13px;
        padding: 6px 15px;
    }
    
    .story-launch {
        padding: 25px;
    }
    
    .footer h2 {
        font-size: 22px;
    }
    
    .copyright {
        font-size: 14px;
    }
}
        