:root {
    --primary: #02318d;
    --light-bg: #f5f7fb;
    --text-dark: #02318d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Albert Sans", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #fff;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO */
.success-hero {
    padding: 150px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.success-hero h1 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 15px;
}

.success-hero .subtitle {
    font-size: 18px;
    color: var(--primary);
}

/* SECTIONS */
.success-section {
    padding: 70px 0;
}

.success-section.light {
    background-color: var(--light-bg);
}

.success-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary);
}

.success-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.success-section p {
    max-width: 900px;
    color: var(--primary);
}

/* LISTS */
.success-section ul {
    margin-top: 15px;
    padding-left: 20px;
}

.success-section li {
    margin-bottom: 10px;
}

/* SOLUTION BLOCK AS CARDS */
.solution-block {
    margin-top: 30px;
    background-color: #ffffff; /* card background */
    padding: 25px 20px;        /* inner padding */
    border-radius: 12px;       /* rounded corners */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth hover effect */
}

.solution-block:hover {
    transform: translateY(-5px); /* slight lift on hover */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15); /* deeper shadow on hover */
}

/* Only apply grid to solution section */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Keep solution blocks as cards */
.solution-grid .solution-block {
    background-color: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-grid .solution-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


/* TESTIMONIAL */
.testimonial {
    padding: 80px 0;
    background-color: var(--primary);
    color: #fff;
    text-align: center;
}

.testimonial blockquote {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 15px;
    font-style: italic;
}

.testimonial span {
    font-size: 14px;
    opacity: 0.9;
}

/* CONCLUSION */
.conclusion p {
    max-width: 900px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .success-hero h1 {
        font-size: 28px;
    }

    .success-section h2 {
        font-size: 22px;
    }

    .success-section h3 {
        font-size: 18px;
    }
}


/* Center ONLY the solution intro paragraph */
.solution-intro {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* Scope Albert Sans to Success Story page ONLY */
.success-page,
.success-page * {
    font-family: "Albert Sans", Arial, sans-serif !important;
}
