:root {
    --primary: #4F46E5;
    --primary-light: #818CF8;
    --secondary: #10B981;
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --background: #ffffff;
    --background-alt: #F3F4F6;
    --border-color: #E5E7EB;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: var(--background-alt);
}

.main {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

/* Left Side - Hero Section */
.hero {
    padding: 2rem 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0L60 30L30 60L0 30L30 0Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: moveBackground 20s linear infinite;
    opacity: 0.2;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50%, -50%); }
}

/* Right Side - Content Section */
.content-section {
    background: var(--background);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container img {
    max-width: 250px;
    height: auto;
}

.content {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

#paragraph {
    background: var(--background-alt);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px var(--shadow-color);
    transition: transform 0.3s ease;
}

#paragraph:hover {
    transform: translateY(-2px);
}

h2 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
}

h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

h4 {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

#footer {
    width: 100%;
    padding: 1rem;
    background: var(--text-primary);
    color: var(--background);
    text-align: center;
    font-size: 0.875rem;
    position: fixed;
    bottom: 0;
    left: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .content-section {
        order: 1;
        padding: 1.5rem;
    }

    .hero {
        order: 2;
        padding: 2rem 1.5rem;
    }

    .content {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .hero {
        display: none;
    }

    .content-section {
        min-height: 100vh;
        padding: 1rem;
    }

    .logo-container img {
        max-width: 200px;
    }

    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.1rem; }
    h4 { font-size: 0.9rem; }

    #footer {
        position: relative;
        padding: 0.75rem;
        background: var(--primary);
    }
}