* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    background-color: #0a0a0a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: -6.25rem;
    left: 0;
    width: 100%;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(0.625rem);
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.05);
    transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.3);
}

.navbar.visible {
    top: 0;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 1.875rem;
    list-style: none;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -0.3125rem;
    left: 0;
    width: 0;
    height: 0.125rem;
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 1.5625rem;
    height: 0.1875rem;
    background: #fff;
    margin: 0.3125rem;
    transition: all 0.3s ease;
}

.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

@supports (height: 100dvh) {
    .hero {
        height: 100dvh;
    }
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 1.25rem;
}

.logo-container {
    margin-bottom: 1.875rem;
    opacity: 0;
    animation: flashReveal 2s ease-out forwards;
}

.logo {
    width: 22rem;
    height: 22rem;
    margin: 0 auto;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 1.875rem rgba(0, 114, 255, 0.5));
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    letter-spacing: 0.125rem;
    opacity: 0;
    animation: flashReveal 2s ease-out forwards;
    text-shadow: 0 0 1.25rem rgba(255, 255, 255, 0.5);
}

@keyframes flashReveal {
    0% {
        opacity: 0;
        text-shadow: 0 0 0 #fff;
        filter: blur(0.625rem);
        transform: scale(0.8);
    }
    30% {
        opacity: 1;
        text-shadow: 0 0 3.125rem #fff, 0 0 6.25rem #fff;
        filter: blur(0);
        transform: scale(1.1);
    }
    60% {
        opacity: 1;
        text-shadow: 0 0 1.875rem #fff, 0 0 3.75rem #fff;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 1.25rem rgba(255, 255, 255, 0.5);
        transform: scale(1);
    }
}

.section {
    padding: 6.25rem 1.25rem;
    max-width: 75rem;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3.125rem;
    text-align: center;
    position: relative;
    color: #fff;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.9375rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.1875rem;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 0.125rem;
}

@media (min-width: 769px) {
    .section-title br {
        display: none;
    }
}

.text-block {
    max-width: 56.25rem;
    margin: 0 auto;
}

.text-content {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

.text-content p {
    margin-bottom: 1.5625rem;
}

.inline-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.inline-image {
    width: 100%;
    height: 12.5rem;
    object-fit: cover;
    border-radius: 0.9375rem;
    transition: all 0.3s ease;
    border: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.inline-image:hover {
    transform: scale(1.03);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 114, 255, 0.3);
    border-color: #0072ff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 2.5rem;
    margin-top: 3.125rem;
}

.project-block {
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-block:last-child {
    margin-bottom: 0;
}

.project-image-container {
    width: 65%;
    max-width: 42.5rem;
    margin: 0 auto 2.5rem auto;
    aspect-ratio: 16/10;
    border-radius: 1.875rem;
    overflow: hidden;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.3);
    border: 0.0625rem solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.project-image-container:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 1.875rem 3.75rem rgba(0, 114, 255, 0.3);
    border-color: #0072ff;
}

.project-image {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.7s ease;
}

.project-image-container:hover .project-image {
    transform: scale(1.02);
}

.project-content {
    padding: 1.25rem 0;
    width: 100%;
    max-width: 60rem;
}

.project-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.project-title::after {
    content: '';
    position: absolute;
    bottom: -0.625rem;
    left: 0;
    width: 4rem;
    height: 0.1875rem;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 0.125rem;
}

.subtitle-text-block {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.subtitle-text-block::after {
    content: '';
    position: absolute;
    bottom: -0.625rem;
    left: 0;
    width: 4rem;
    height: 0.1875rem;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 0.125rem;
}

.project-description {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.project-description:last-child {
    margin-bottom: 0;
}

.project-divider {
    width: 5rem;
    height: 0.25rem;
    background: linear-gradient(90deg, #0072ff, #00c6ff, #0072ff);
    border-radius: 0.125rem;
    margin: 4rem auto;
    opacity: 0.5;
}

.info-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.25rem;
    overflow: hidden;
    backdrop-filter: blur(0.625rem);
    border: 0.0625rem solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s ease;
}

.info-card:hover {
    transform: translateY(-0.9375rem) scale(1.02);
    border-color: rgba(0, 114, 255, 0.3);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 114, 255, 0.2);
}

.info-card:hover::before {
    left: 100%;
}

.info-image {
    width: 80%;
    height: auto;
    margin-top: 2rem;
    margin-right: auto;
    margin-left: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.info-card:hover .info-image {
    transform: scale(1.05);
}

.info-content {
    padding: 1.5625rem;
}

.info-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.9375rem;
    color: #fff;
}

.info-content p {
    color: #b0b0b0;
    line-height: 1.7;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    gap: 2.5rem;
    margin-top: 3.125rem;
}

.partner-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    text-align: center;
    border: 0.0625rem solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(0.625rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.partner-item:hover {
    transform: translateY(-0.5rem) scale(1.02);
    border-color: #0072ff;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 114, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.partner-logo-container {
    width: 18rem;
    height: 9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo-container {
    background: rgba(255, 255, 255, 0.1);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) grayscale(20%);
    transition: all 0.4s ease;
}

.partner-item:hover .partner-logo {
    filter: brightness(1.1) grayscale(0%);
    transform: scale(1.05);
}

.partner-name {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.partner-item:hover .partner-name {
    opacity: 1;
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 2.5rem;
    margin-top: 3.125rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1.25rem;
    overflow: hidden;
    border: 0.0625rem solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(0.625rem);
}

.team-member:hover {
    transform: translateY(-0.625rem);
    border-color: #0072ff;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 114, 255, 0.2);
}

.member-photo {
    width: 70%;
    margin-top: 1rem;
    margin-left: 3.5rem;
    margin-right: auto;
    height: 25rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5625rem;
    text-align: center;
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 0.3125rem;
    color: #fff;
}

.member-position {
    color: #0072ff;
    margin-bottom: 0.9375rem;
}

.member-bio {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.contact-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.98));
    backdrop-filter: blur(0.625rem);
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.05);
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.05);
}

.contact-form {
    max-width: 37.5rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 3.125rem;
    border-radius: 1.875rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(0.625rem);
}

.form-group {
    margin-bottom: 1.875rem;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 0.9375rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 0.125rem solid rgba(255, 255, 255, 0.1);
    border-radius: 0.9375rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: #0072ff;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 1.875rem rgba(0, 114, 255, 0.3);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    transition: opacity 0.3s ease;
}

.form-group input:focus::placeholder {
    opacity: 0.7;
    transform: translateX(0.625rem);
}

.form-group label {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.8);
    padding: 0 0.3125rem;
    opacity: 0;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: 0;
    opacity: 1;
    font-size: 0.85rem;
}

.honey-pot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.submit-btn {
    width: 100%;
    padding: 1.125rem;
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    border: none;
    border-radius: 0.9375rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 18.75rem;
    height: 18.75rem;
}

.submit-btn:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 114, 255, 0.5);
}

.t-kanal-link {
    color: #0072ff;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.t-kanal-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0072ff;
    transition: width 0.3s ease;
}

.t-kanal-link:hover::after {
    width: 100%;
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3.75rem 1.25rem 1.875rem;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 75rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 2.5rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.3125rem;
    left: 0;
    width: 1.875rem;
    height: 0.125rem;
    background: #0072ff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #0072ff;
    transform: translateX(0.3125rem);
}

.contact-info {
    color: #b0b0b0;
}

.contact-info p {
    margin-bottom: 0.625rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.copyright {
    text-align: center;
    margin-top: 3.125rem;
    padding-top: 1.875rem;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.05);
    color: #6c757d;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(0.3125rem);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    margin: 5% auto;
    padding: 2rem;
    width: 80%;
    max-width: 50rem;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 1.875rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.5);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-3.125rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-close {
    background: none;
    border: none;
    color: #b0b0b0;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    padding: 0 0.5rem;
}

.modal-close:hover {
    color: #0072ff;
    transform: scale(1.1);
}

.modal-body {
    color: #b0b0b0;
    line-height: 1.8;
}

.modal-body h4 {
    color: #fff;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 1rem;
}

.modal-footer-note {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-style: italic;
}

.modal-footer-note a {
    color: #0072ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modal-footer-note a:hover {
    color: #00c6ff;
    text-decoration: underline;
}

@media (min-width: 769px) and (max-width: 1200px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 2rem;
    }
    
    .logo-container {
        margin-bottom: 1.5rem;
        opacity: 1;
        animation: none;
    }
    
    .logo {
        width: 16rem;
        height: 16rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
        opacity: 1;
        animation: none;
    }
    
    .project-image-container {
        width: 80%;
    }
    
    .member-photo {
        height: 20rem;
        margin-left: 2rem;
    }
    
    .partner-logo-container {
        width: 15rem;
        height: 8rem;
    }
}

@media (max-width: 1024px) and (orientation: portrait) {
    html {
        font-size: 15px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(0.625rem);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        z-index: 1000;
        border-left: 0.0625rem solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 1.25rem 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .burger {
        display: block;
    }

    .burger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-0.3125rem, 0.375rem);
    }

    .burger.active div:nth-child(2) {
        opacity: 0;
    }

    .burger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-0.3125rem, -0.375rem);
    }

    .section {
        padding: 3.75rem 1.25rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-form {
        padding: 1.875rem;
    }
    
    .logo {
        width: 16rem;
        height: 16rem;
    }

    .inline-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .inline-image {
        height: 15.625rem;
    }

    .text-content {
        font-size: 1rem;
    }

    .team-grid {
        gap: 1.5rem;
    }

    .member-photo {
        width: 70%;
        height: 18rem;
        margin: 1rem auto 0 auto;
    }

    .info-card {
        margin: 0;
    }

    .info-image {
        width: 80%;
        margin: 1.5rem auto 0 auto;
    }
}

@media (max-width: 932px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 1rem;
    }
    
    .logo-container {
        margin-bottom: 0.5rem;
        opacity: 1;
        animation: none;
    }
    
    .logo {
        width: 8rem;
        height: 8rem;
    }
    
    .hero-title {
        font-size: 2rem;
        opacity: 1;
        animation: none;
    }
    
    .section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    html {
        font-size: 15px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(0.625rem);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        z-index: 1000;
        border-left: 0.0625rem solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 1.25rem 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .burger {
        display: block;
    }

    .burger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-0.3125rem, 0.375rem);
    }

    .burger.active div:nth-child(2) {
        opacity: 0;
    }

    .burger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-0.3125rem, -0.375rem);
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .logo {
        width: 16rem;
        height: 16rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .inline-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .inline-image {
        height: 12rem;
    }

    .project-image-container {
        width: 100%;
        border-radius: 1.25rem;
    }
    
    .project-block {
        margin-bottom: 3rem;
    }
    
    .project-title {
        font-size: 1.75rem;
    }
    
    .project-description {
        font-size: 1rem;
    }
    
    .project-divider {
        margin: 2rem auto;
    }
    
    .project-image-container:hover {
        transform: none;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .partner-item {
        padding: 1.25rem;
    }

    .partner-logo-container {
        width: 100%;
        height: 6rem;
    }

    .partner-name {
        font-size: 1rem;
    }

    .team-grid {
        gap: 1.5rem;
    }

    .member-photo {
        width: 70%;
        height: 16rem;
        margin: 1rem auto 0 auto;
    }

    .info-card {
        margin: 0;
    }

    .info-image {
        width: 80%;
        margin: 1.5rem auto 0 auto;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    html {
        font-size: 14px;
    }

    .logo {
        width: 14rem;
        height: 14rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .section {
        padding: 2rem 0.75rem;
    }

    .project-image-container {
        border-radius: 1rem;
    }

    .member-photo {
        width: 80%;
        height: 14rem;
    }

    .info-image {
        width: 90%;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        max-width: 18rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .partner-logo-container {
        height: 5rem;
    }
}

@media (max-width: 667px) and (orientation: landscape) {
    .logo {
        width: 6rem;
        height: 6rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 568px) and (orientation: landscape) {
    .logo {
        width: 5rem;
        height: 5rem;
    }
    
    .hero-title {
        font-size: 1.2rem;
    }
}