/*
Theme Name: GreatStandard Child
Theme URI: https://gscts.com/greatstandard-child/
Description: Child theme for GreatStandard
Author: Your GSCTS
Author URI: https://gscts.com
Template: gh
Version: 1.0.0
*/


    .greatstandard-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: #212529;
		min-height: 400px;
    }
    
    .greatstandard-header {
        background: linear-gradient(135deg, #005b96, #003d66);
        color: white;
        padding: 40px 20px;
        text-align: center;
        margin-bottom: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .greatstandard-header h1 {
        font-size: 3rem;
        margin: 0;
        font-weight: 700;
        letter-spacing: 1px;
    }
    
    .greatstandard-section h2 {
        color: #005b96;
        font-size: 2rem;
        margin-top: 40px;
        border-bottom: 2px solid #00a0e1;
        padding-bottom: 10px;
        position: relative;
    }
    
    .greatstandard-section h2:after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100px;
        height: 2px;
        background-color: #003d66;
    }
    
    .greatstandard-section h3 {
        color: #003d66;
        font-size: 1.5rem;
        margin-top: 30px;
    }
    
    .greatstandard-section {
        background-color: white;
        border-radius: 8px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .greatstandard-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .greatstandard-mission-vision {
        display: flex;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .greatstandard-mission-block {
        flex: 1;
    }
    
    .greatstandard-values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }
    
    .greatstandard-value-card {
        background-color: #f8f9fa;
        border-left: 4px solid #00a0e1;
        padding: 20px;
        border-radius: 0 4px 4px 0;
    }
    
    .greatstandard-value-card h4 {
        color: #005b96;
        margin-top: 0;
        font-size: 1.2rem;
    }
    
    .greatstandard-conclusion {
        text-align: center;
        font-style: italic;
        font-size: 1.2rem;
        color: #003d66;
        padding: 30px;
        background-color: rgba(0, 160, 225, 0.1);
        border-radius: 8px;
        margin-top: 40px;
    }
    
    @media (max-width: 768px) {
        .greatstandard-mission-vision {
            flex-direction: column;
        }
        
        .greatstandard-header h1 {
            font-size: 2.2rem;
        }
    }
.s-16{font-size: 16px;}

.client-choices {
    font-family: 'Inter', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #2d3748;
}

.choices-hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #005b9f;
    margin-bottom: 20px;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #005b9f, #00a0e9);
    margin: 0 auto;
    border-radius: 2px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #005b9f;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.cta-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    margin-top: 60px;
    border-left: 5px solid #005b9f;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #005b9f;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2d3748;
}

.cta-desc {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-button {
    background: #005b9f;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 91, 159, 0.3);
}

.cta-button:hover {
    background: #004080;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 91, 159, 0.4);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

