/* Hero section styles for full width layout */
#hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f8f9fe 0%, #e2e6ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background decorations */
#hero::before, #hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(235, 110, 0, 0.1);
    z-index: 1;
}

#hero::before {
    top: -100px;
    right: -100px;
}

#hero::after {
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(235, 110, 0, 0.05);
}

#hero .container {
    display: block; /* Changed from flex to block for full width */
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px; /* Increased max-width */
    margin: 0 auto; /* Center the content */
    position: relative;
}

.hero-content h2 {
    font-size: 3.5rem; /* Slightly larger font size */
    margin-bottom: 25px;
    background: linear-gradient(90deg, #eb6e00, #ff8f73);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dark-color);
}

.hero-content .btn-primary {
    padding: 15px 40px; /* Slightly larger button */
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hero-content .btn-primary i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.hero-content .btn-primary:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hero {
        padding: 140px 0 80px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}
