/* Hero Section Styles */
.ikbase-hero {
    background: linear-gradient(135deg, #1e73be, #00a8ff);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.ikbase-hero-overlay {
    position: relative;
    z-index: 1;
}

.ikbase-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.ikbase-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Hero */
@media screen and (max-width: 768px) {
    .ikbase-hero {
        padding: 60px 20px;
    }
    
    .ikbase-hero p {
        font-size: 16px;
    }
} 