#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    background: radial-gradient(circle at top right, rgba(30, 114, 204, 0.1), transparent),
                radial-gradient(circle at bottom left, rgba(30, 114, 204, 0.05), transparent);
}

.hero-content {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    max-width: 1200px;
    align-items: center;
}

.image-container {
    flex: 0 0 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-blue);
    box-shadow: 0 0 40px rgba(30, 114, 204, 0.3);
}

.image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    flex: 1;
}

.hero-subtitle {
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-content-button {
    display: flex;
    gap: 1.5rem;
}

.primary-button, .outline-button {
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.primary-button {
    background-color: var(--primary-blue);
    color: white;
    border: none;
}

.primary-button:hover {
    background-color: #165dab;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 114, 204, 0.4);
}

.outline-button {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-blue);
}

.outline-button:hover {
    background-color: rgba(30, 114, 204, 0.1);
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .hero-content-button {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content-button {
        flex-direction: column;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .primary-button, .outline-button {
        text-align: center;
    }
}
