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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: Helvetica, sans-serif;
    background-color: #030080;
    color: #ffffff;
    cursor: default;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #030080;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: lowercase;
    text-decoration: none;
    color: #ffffff;
}

.logo:hover {
    opacity: 0.5;
}

nav a {
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    margin-left: 30px;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.5;
}

main {
    height: calc(100vh - 80px);
    padding: 60px 40px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.content {
    max-width: none;
    margin: 0;
    display: flex;
    gap: 100px;
    justify-content: center;
    align-items: flex-end;
}

.column-left {
    flex: 0 0 auto;
    min-width: 300px;
    max-width: 300px;
    font-family: Helvetica;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
}

.column-right {
    flex: 0 0 auto;
    max-width: 300px;
    align-self: stretch;
}

.column-right p {
    font-size: 12px;
    font-family: Helvetica;
    color: #999999;
    margin-bottom: 4px;
    line-height: 1.3;
}

.info-section {
    margin-bottom: 0px;
}

.info-section p {
    line-height: 1;
}

h2 {
    font-size: 20px;
    font-weight: 550;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    line-height: 1.1;
}

p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.5;
}

.contact-links {
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .content {
        gap: 60px;
    }
    
    .column-left,
    .column-right {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    html {
        height: 100%;
        overflow: hidden;
    }
    
    body {
        height: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    header {
        position: relative;
        padding: 15px 20px;
    }
    
    nav a {
        margin-left: 15px;
        font-size: 11px;
    }
    
    main {
        height: auto;
        min-height: 100vh;
        padding: 80px 20px 60px;
        overflow: visible;
    }
    
    .content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .column-left {
        min-width: 100%;
        max-width: 100%;
        order: 2;
    }
    
    .column-right {
        max-width: 100%;
        width: 100%;
        order: 1;
    }
    
    .about-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .info-section h2 {
        font-size: 18px;
    }
    
    .info-section p {
        font-size: 12px;
    }
    
    .contact-links {
        margin-bottom: 15px;
    }
    
    .contact-links a {
        font-size: 12px;
    }
    
    footer {
        padding: 10px 20px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px;
    }
    
    nav a {
        margin-left: 10px;
        font-size: 10px;
    }
    
    main {
        padding: 70px 15px 15px;
    }
    
    .content {
        gap: 30px;
    }
    
    .info-section h2 {
        font-size: 16px;
    }
    
    .info-section p {
        font-size: 11px;
    }
    
    .contact-links a {
        font-size: 11px;
    }
    
    .about-image {
        max-width: 250px;
    }
}

.contact-links a {
    display: inline;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 400;
}

footer {
    padding: 40px 40px;
    background: #030080;
    text-align: center;
}

footer p {
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 10px;
}

.credits {
    margin-top: 20px;
    font-size: 11px;
    line-height: 1.6;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.top-sections {
    display: flex;
    flex-direction: column;
}

.bottom-text {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bottom-text p {
    margin-bottom: 0;
    font-size: 14px;
    text-align: justify;
}

.bottom-text p:first-child {
    margin-bottom: 8px;
}
