/*
 Theme Name:   RevenueBridge Child
 Theme URI:    https://revenuebridgeadvisory.com
 Description:  Astra Child Theme for RevenueBridge Advisory
 Author:       Your Name
 Author URI:   https://revenuebridgeadvisory.com
 Template:     astra
 Version:      1.0.0
 Text Domain:  revenuebridge-child
*/

/* Add your custom CSS below this line */


/* RevenueBridge Child Theme Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
}

.service-card h3 {
    color: #2a5298;
    margin-bottom: 15px;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
}

/* Buttons */
.ast-button {
    background: #2a5298;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ast-button:hover {
    background: #1e3c72;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
}