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

body {
    font-family: 'Inter', sans-serif;
    background-image: url('image2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

/* Top controls */
.top-controls {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.language-buttons {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lang-btn.active {
    background: #333;
    color: white;
}

.download-btn {
    background: rgba(53, 43, 43, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #dde6e7;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    display: inline-block;
}

.download-btn:hover {
    color: #dde6e7;
    background: rgb(53, 43, 43);
    transform: translateY(-1px);
}

/* Navigation */
.nav-menu {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    gap: 30px;
    z-index: 10;
}

.nav-link {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-link.active {
    background: #333;
    color: white;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 60px;
    animation: fadeInUp 1s ease-out;
}

.page-title {
    text-align: center;
    margin-bottom: 60px;
    animation: slideInFromTop 0.8s ease-out;
}

.page-title h1 {
    font-size: 48px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Content layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

/* Photo section */
.photo-section {
    display: flex;
    justify-content: center;
    animation: slideInFromLeft 1s ease-out 0.3s both;
}

.photo-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.photo-container:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.profile-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.profile-photo:hover {
    filter: brightness(1.1) contrast(1.1);
}

/* Text section */
.text-section {
    animation: slideInFromRight 1s ease-out 0.5s both;
}

.text-content {
    text-align: justify;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 0;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.text-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.text-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    font-weight: 400;
    opacity: 0;
    animation: fadeInText 0.8s ease-out forwards;
}

.text-content p:nth-child(1) { animation-delay: 0.8s; }
.text-content p:nth-child(2) { animation-delay: 1.0s; }
.text-content p:nth-child(3) { animation-delay: 1.2s; }
.text-content p:nth-child(4) { animation-delay: 1.4s; }
.text-content p:nth-child(5) { animation-delay: 1.6s; }

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

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    z-index: 5;
    animation: fadeIn 1s ease-out 1.8s both;
}

.footer p {
    background-color: rgb(53, 43, 43, 0.9);
    margin: 0;
    color: #b0b0b0;
    font-size: 0.9em;
    padding: inherit;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .photo-container {
    transform: scale(0.95);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    }
    
    .photo-container:hover {
    transform: scale(0.97);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .page-title h1 {
        margin-top: 125px;
        font-size: 36px;
        letter-spacing: 4px;
    }

    .text-content p {
        font-size: 32px;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .top-controls {
        top: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .nav-menu {
        top: 20px;
        left: 20px;
        gap: 5px;
    }
    
    .language-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .main-content {
        padding: 100px 0 40px;
    }
    
    .page-title h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .text-content {
        font-size: 36px;
        padding: 30px 20px;
    }
    
    .text-content p {
        font-size: 20px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .page-title h1 {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .text-content {
        font-size: 36px;
        padding: 20px 15px;
    }
    
    .text-content p {
        font-size: 20px;
    }
}

