/* Google Fonts Import - already in HTML head */
/*
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;
400;
600;
700&family=Poppins:wght@400;
600;
700&display=swap');
*/
:root {
    --support-automation-primary-dark-blue: #154061;
    --support-automation-light-cream: #F2E6D9;
    --support-automation-bright-yellow: #F5B219;
    --support-automation-medium-blue: #2196C6;
    --support-automation-white: #FFFFFF;
    --support-automation-text-dark: #154061;
    /* Using primary dark blue for dark text */
    --support-automation-text-light: #FFFFFF;
    /* Using white for light text */
    --support-automation-font-heading: 'Poppins', sans-serif;
    --support-automation-font-body: 'Open Sans', sans-serif;
}
/* Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: var(--support-automation-font-body);
    line-height: 1.6;
    color: #333;
    /* Default body text color, overwritten by section-specific colors */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--support-automation-font-heading);
    margin-top: 0;
    margin-bottom: 0.5em;
    line-height: 1.2;
}
p {
    margin-top: 0;
    margin-bottom: 1em;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
li {
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 1.5em;
    /* Space for custom bullet */
}
li::before {
    content: '✓';
    /* Custom bullet point */
    color: var(--support-automation-primary-dark-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}
a {
    text-decoration: none;
    color: inherit;
}
/* Reusable Container for Section Content */
.support-automation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 25px;
    /* Added vertical padding for sections */
}
/* Section Specific Styles */
/* Hero Section */
.support-automation-hero-section {
    background-color: var(--support-automation-primary-dark-blue);
    color: var(--support-automation-text-light);
    text-align: center;
    padding: 80px 0;
    /* Adjusted padding */
}
.support-automation-hero-heading {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 25px;
}
.support-automation-hero-description {
    font-size: 1.3em;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}
/* General Section Styles (reused for non-hero sections) */
.support-automation-section-heading {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}
.support-automation-section-paragraph {
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: center;
}
.support-automation-bullet-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px 30px;
    margin-top: 40px;
    max-width: 900px;
    /* Aligns with paragraph width */
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    /* Bullets align left within their grid cell */
}
.support-automation-bullet-points li {
    font-size: 1.05em;
    line-height: 1.6;
}
/* Help Desk Systems Section */
.support-automation-helpdesk-section {
    background-color: var(--support-automation-light-cream);
    color: var(--support-automation-text-dark);
}
/* AI-Powered Chatbots Section */
.support-automation-chatbots-section {
    background-color: var(--support-automation-bright-yellow);
    color: var(--support-automation-text-dark);
}
/* Optional & Scalable Section */
.support-automation-optional-section {
    background-color: var(--support-automation-medium-blue);
    color: var(--support-automation-text-light);
}
.support-automation-optional-section .support-automation-section-heading,
.support-automation-optional-section .support-automation-section-paragraph {
    color: var(--support-automation-text-light);
    /* Ensure white text */
}
/* Call to Action Section */
.support-automation-cta-section {
    background-color: var(--support-automation-light-cream);
    color: var(--support-automation-text-dark);
    text-align: center;
}
.support-automation-cta-button {
    display: inline-block;
    background-color: var(--support-automation-primary-dark-blue);
    color: var(--support-automation-text-light);
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.support-automation-cta-button:hover {
    background-color: #1a517d;
    /* Slightly lighter shade of dark blue */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.support-automation-cta-button:active {
    background-color: #0f2e4d;
    /* Slightly darker shade */
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* Responsiveness */
@media (max-width: 1024px) {
    .support-automation-hero-heading {
        font-size: 2.8em;
    }
    .support-automation-section-heading {
        font-size: 2.2em;
    }
    .support-automation-bullet-points {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
@media (max-width: 768px) {
    .support-automation-container {
        padding: 40px 20px;
    }
    .support-automation-hero-section {
        padding: 60px 0;
    }
    .support-automation-hero-heading {
        font-size: 2.2em;
    }
    .support-automation-hero-description {
        font-size: 1.1em;
    }
    .support-automation-section-heading {
        font-size: 1.8em;
    }
    .support-automation-section-paragraph {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .support-automation-bullet-points {
        grid-template-columns: 1fr;
        /* Stack bullets on smaller screens */
        gap: 10px;
    }
    .support-automation-cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}
@media (max-width: 480px) {
    .support-automation-container {
        padding: 30px 15px;
    }
    .support-automation-hero-section {
        padding: 50px 0;
    }
    .support-automation-hero-heading {
        font-size: 1.8em;
    }
    .support-automation-hero-description {
        font-size: 1em;
    }
    .support-automation-section-heading {
        font-size: 1.5em;
    }
    .support-automation-section-paragraph {
        margin-bottom: 20px;
    }
    li {
        font-size: 0.95em;
    }
    .support-automation-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}