/* Global Styles */
:root {
    --dark-blue: #13293d;
    --teal: #009599;
    --orange: #f4812b;
    --light-blue: #6babc2;
    --light-teal-bg: #e5f2f2;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--teal);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--orange);
}

.text-dark {
    color: var(--dark-blue);
}

.text-orange {
    color: var(--orange);
}

.text-teal {
    color: var(--teal);
}

.highlight {
    font-weight: 600;
    font-size: 1.1em;
    margin: 20px 0;
}

.centered-text {
    text-align: center;
}

ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

ol {
    list-style-position: inside;
    margin-bottom: 20px;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--orange);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.subtitle {
    font-size: 1.2rem;
    margin-top: -15px;
    margin-bottom: 30px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-blue);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

nav ul li a:hover {
    color: var(--orange);
}

/* Hero Section */
.hero {
    background-color: var(--light-teal-bg);
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--dark-blue);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Challenge Section */
.challenge-section {
    background-color: var(--light-teal-bg);
    padding: 40px 0;
}

.challenge-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.challenge-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.framework-statement {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.framework-statement h3 {
    font-size: 1.6rem;
    margin: 0;
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

.engagement-model {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.engagement-content {
    flex: 1;
    min-width: 300px;
}

.tree-graphic {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.tree-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.engagement-list {
    list-style: none;
    margin-left: 20px;
    margin-bottom: 40px;
}

.engagement-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.teal-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--teal);
    border-radius: 50%;
}

.orange-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--orange);
    border-radius: 50%;
}

.insight-statement {
    text-align: center;
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--light-teal-bg);
    border-radius: 8px;
}

/* What is ACT Section */
.what-is-act {
    background-color: var(--white);
}

.two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.column {
    flex: 1;
    min-width: 300px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.act-logo {
    max-width: 100%;
    height: auto;
}

/* Why ACT Section */
.why-act {
    background-color: var(--light-gray);
}

.content-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits {
    background-color: var(--white);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 40px auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-icon {
    color: var(--teal);
    font-size: 1.5rem;
    line-height: 1;
}

/* Comparison Section */
.comparison {
    background-color: var(--light-gray);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-row {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.traditional {
    flex: 1;
    background-color: var(--light-blue);
    color: var(--white);
    padding: 15px;
    border-radius: 6px 0 0 6px;
    text-align: right;
}

.arrow {
    padding: 0 15px;
    color: var(--orange);
    font-weight: bold;
}

.act-solution {
    flex: 2;
    background-color: var(--teal);
    color: var(--white);
    padding: 15px;
    border-radius: 0 6px 6px 0;
}

/* Who Benefits Section */
.who-benefits {
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card {
    background-color: var(--light-teal-bg);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Flexibility Section */
.flexibility {
    background-color: var(--light-gray);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: var(--light-teal-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.quote {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.quote:before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--teal);
}

.author {
    font-weight: 600;
    text-align: right;
}

/* CTA Section */
.cta-section {
    background-color: var(--teal);
    color: var(--white);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: var(--orange);
    color: var(--white);
}

.cta-button.secondary {
    background-color: var(--white);
    color: var(--teal);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cta-email {
    font-size: 1.1rem;
}

.cta-email a {
    color: var(--white);
    text-decoration: underline;
}

/* Why Choose Section */
.why-choose {
    background-color: var(--white);
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.service-item {
    text-align: center;
    max-width: 300px;
}

.service-item i {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 20px;
}

.mini-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.mini-button {
    padding: 10px 20px;
    background-color: var(--light-teal-bg);
    color: var(--dark-blue);
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.mini-button:hover {
    background-color: var(--teal);
    color: var(--white);
}

/* About ACT Section */
.about-act {
    background-color: var(--light-gray);
}

.final-cta {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h4:after,
.footer-contact h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--orange);
    bottom: -8px;
    left: 0;
}

.footer-links ul {
    list-style: none;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white);
}

.footer-links ul li a:hover {
    color: var(--orange);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
}

.social-icons a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .engagement-model {
        flex-direction: column;
    }
    
    .comparison-row {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .traditional, .act-solution {
        width: 100%;
        text-align: center;
        border-radius: 6px;
    }
    
    .traditional {
        border-radius: 6px 6px 0 0;
    }
    
    .act-solution {
        border-radius: 0 0 6px 6px;
    }
    
    .arrow {
        transform: rotate(90deg);
        padding: 10px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 40px 0;
    }
}
