/* General Clean Aesthetic & Google Fonts */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #1a1a1a;
    /* Default body text color */
}
/* Base styles for sections */
.solutions-hero-section,
.solutions-cards-section,
.solutions-cta-section {
    padding: 80px 20px;
    /* Consistent vertical padding */
    text-align: center;
}
.solutions-hero-container,
.solutions-cards-container,
.solutions-cta-container {
    max-width: 1200px;
    margin: 0 auto;
}
/* Hero Section */
.solutions-hero-section {
    background-color: #2196C6;
    /* Hero Background */
    color: #FFFFFF;
    /* White text */
}
.solutions-hero-heading {
    font-size: 2.8em;
    /* Large text to ensure WCAG AA (3:1) for text on #2196C6 */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.solutions-hero-description {
    font-size: 1.3em;
    /* Large text to ensure WCAG AA (3:1) for text on #2196C6 */
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}
/* Problem & Solution Cards Section */
.solutions-cards-section {
    background-color: #F2E6D9;
    /* Cards Background */
    color: #154061;
    /* Dark blue text */
}
.solutions-cards-main-heading {
    font-size: 2.4em;
    font-weight: 600;
    margin-bottom: 60px;
    color: #154061;
}
.solutions-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.solutions-card {
    background-color: #FFFFFF;
    /* White background for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(21, 64, 97, 0.1);
    /* Subtle border */
}
.solutions-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.solutions-card-problem {
    font-size: 1.4em;
    font-weight: 600;
    color: #154061;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
}
.solutions-card-solution {
    font-size: 1em;
    font-weight: 400;
    color: #154061;
    opacity: 0.85;
}
/* Call to Action Section */
.solutions-cta-section {
    background-color: #F5B219;
    /* CTA Background */
    color: #154061;
    /* Dark blue text */
    padding: 100px 20px;
}
.solutions-cta-heading {
    font-size: 2.6em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #154061;
}
.solutions-cta-paragraph {
    font-size: 1.2em;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: #154061;
    opacity: 0.9;
}
.solutions-cta-button {
    background-color: #154061;
    /* Button Background */
    color: #FFFFFF;
    /* White text */
    padding: 18px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    /* In case it's changed to an anchor */
    display: inline-block;
    /* Allows padding and vertical alignment */
}
.solutions-cta-button:hover {
    background-color: #0F304B;
    /* Slightly darker shade on hover */
    transform: translateY(-3px);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .solutions-hero-section,
    .solutions-cards-section,
    .solutions-cta-section {
        padding: 60px 15px;
    }
    .solutions-hero-heading {
        font-size: 2em;
    }
    .solutions-hero-description {
        font-size: 1em;
    }
    .solutions-cards-main-heading {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .solutions-cards-grid {
        grid-template-columns: 1fr;
        /* Stack cards on smaller screens */
    }
    .solutions-card {
        padding: 25px;
    }
    .solutions-card-problem {
        font-size: 1.2em;
    }
    .solutions-cta-heading {
        font-size: 2em;
    }
    .solutions-cta-paragraph {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .solutions-cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }
}
@media (max-width: 480px) {
    .solutions-hero-heading {
        font-size: 1.8em;
    }
    .solutions-hero-description {
        font-size: 0.9em;
    }
    .solutions-cards-main-heading {
        font-size: 1.6em;
    }
    .solutions-cta-heading {
        font-size: 1.8em;
    }
}