/* Our Promise Styles */
:root {
    --primary: #4a6cf7;
    --primary-dark: #3a5ce4;
    --secondary: #6c757d;
    --dark: #343a40;
    --light: #f8f9fa;
    --accent: #ff6b35;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

/* Promise Hero */
.promise-hero {
    background: url('../images/our-promise2.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 10rem 0;
    position: relative;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    color: var(--light);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light);
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 3px;
    width: 1.5rem;
    background: var(--light);
}

/* Promise Graphic */
.promise-graphic {
    position: relative;
    height: 300px;
}

.graphic-circle {
    position: absolute;
    border-radius: 50%;
    transition: all 0.5s ease;
}
/*
.circle-1 {
    width: 150px;
    height: 150px;
    background: var(--primary);
    top: 20%;
    left: 20%;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-3 {
    width: 120px;
    height: 120px;
    background: var(--secondary);
    bottom: 10%;
    right: 20%;
}

.graphic-circle.active {
    transform: scale(1.2);
    background-color: rgba(74, 108, 247, 0.2);
} */

/* Manifesto Section */
.manifesto-section {
    padding: 4rem 0;
    background: white;
}

.manifesto-card {
    max-width: 800px;
    margin: -5rem auto 0;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.manifesto-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.btn-promise {
    background: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-promise:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 108, 247, 0.2);
}

/* Pillars Section */
.pillars-section {
    padding: 6rem 0;
    background: var(--light);
}

.pillar-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    background: var(--primary);
    color: white;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.pillar-card p {
    color: var(--dark);
}

/* CTA Section */
.promise-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light) 0%, var(--secondary) 100%);
    text-align: center;
}

.promise-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.btn-light {
    background: var(--primary);
    color: var(--light);
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-tagline {
        font-size: 1.3rem;
    }
    .manifesto-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .promise-hero {
        padding: 6rem 0 4rem;
        text-align: center;
    }
    .hero-tagline {
        padding-left: 0;
        text-align: center;
    }
    .hero-tagline::before {
        display: none;
    }
    .manifesto-card {
        margin-top: 0;
    }
    .pillar-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .manifesto-card {
        padding: 2rem 1.5rem;
    }
    .promise-cta h2 {
        font-size: 1.8rem;
    }
}