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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1c3b9a 0%, #0e0630 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.container {
    background: rgba(255, 255, 255, 0.684);
    border-radius: 10px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Header/Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.684)
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: #457ec4;
}

nav a.active {
    color: #457ec4;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #457ec4;
}

/* Main Content */
.content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
}

.image-section {
    position: relative;
    background: linear-gradient(135deg, #1c3b9a 0%, #0e0630 100%);
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section img
{
    object-fit: contain;
    object-position: right;
}


.text-section {
    padding: 2rem;
}

.text-section h1 {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.text-section h2 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-section p {
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 1.3rem;
    transition: all 0.3s;
    border-radius: 5px;
}

.social-links a:hover {
    color: #0e0630;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1c3b9a 0%, #0e0630 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 1200px;
    border-radius: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.footer-logo-icon {
    width: 25px;
    height: 25px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.scroll-indicator {
    margin-top: 1rem;
    font-size: 1.5rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .text-section h1 {
        font-size: 2.5rem;
    }

    .image-section {
        height: 400px;
    }
}