/* Promise Theory Hero Section Styles */

.promise-hero-section {
    background-color: #f0f5f7;
    padding: 80px 0 100px;
    margin-top: 56px; /* Account for fixed navbar */
}

.hero-content {
    padding-right: 40px;
}

/* Badge Styles */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: #B8D4E3;
    border-radius: 20px;
    padding: 6px 14px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #0C6983;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #0C6983;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.badge-text {
    font-family: 'Cabin', sans-serif;
}

/* Typography */
.hero-headline {
    font-size: 48px;
    font-weight: 700;
    color: #022029;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: 'Cabin', sans-serif;
}

.hero-subheadline {
    font-size: 32px;
    font-weight: 600;
    color: #0C6983;
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: 'Cabin', sans-serif;
}

.hero-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 32px;
    font-family: 'Cabin', sans-serif;
}

/* Button Styles */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background-color: #0C6983;
    border: none;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Cabin', sans-serif;
}

.hero-btn-primary:hover {
    background-color: #0a5568;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 105, 131, 0.3);
}

.hero-btn-secondary {
    background-color: #ffffff;
    border: 2px solid #0C6983;
    color: #0C6983;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Cabin', sans-serif;
}

.hero-btn-secondary:hover {
    background-color: #f0f9fb;
    border-color: #0a5568;
    color: #0a5568;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 105, 131, 0.2);
}

/* Features Section */
.hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666666;
    font-size: 16px;
    font-family: 'Cabin', sans-serif;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #0C6983;
    font-size: 18px;
}

/* Form Container Styles */
.hero-form-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-heading {
    font-size: 28px;
    font-weight: 700;
    color: #0C6983;
    margin-bottom: 12px;
    font-family: 'Cabin', sans-serif;
}

.form-subtext {
    font-size: 16px;
    color: #666666;
    margin-bottom: 32px;
    font-family: 'Cabin', sans-serif;
}

.form-placeholder {
    min-height: 300px;
    margin-bottom: 24px;
}

.form-privacy {
    font-size: 12px;
    color: #999999;
    text-align: center;
    margin-top: 16px;
    font-family: 'Cabin', sans-serif;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-headline {
        font-size: 40px;
    }
    
    .hero-subheadline {
        font-size: 28px;
    }
    
    .hero-form-container {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .promise-hero-section {
        padding: 60px 0 80px;
        margin-top: 50px;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .hero-subheadline {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-btn-primary {
        display: none;
    }
    
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-form-container {
        padding: 24px;
    }
    
    .form-heading {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .promise-hero-section {
        padding: 40px 0 60px;
    }
    
    .hero-headline {
        font-size: 28px;
    }
    
    .hero-subheadline {
        font-size: 20px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .hero-form-container {
        padding: 20px;
    }
}
/* Scientific Foundation Section Styles */
.scientific-foundation-section {
    background-color: #f0f5f7;
    padding: 70px 0;
}

/* Header Area */
.foundation-badge {
    display: inline-block;
    background-color: #B8D4E3;
    color: #0C6983;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Cabin', sans-serif;
}

.foundation-heading {
    font-size: 42px;
    font-weight: 700;
    color: #022029;
    margin-bottom: 16px;
    font-family: 'Cabin', sans-serif;
}

.foundation-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 0;
    font-family: 'Cabin', sans-serif;
}

/* Diagram Card */
.diagram-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagram-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.diagram-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.diagram-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
}

.agent-circle {
    width: 120px;
    height: 120px;
    border: 2px solid #0C6983;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    flex-shrink: 0;
}

.agent-label {
    font-size: 14px;
    font-weight: 600;
    color: #022029;
    font-family: 'Cabin', sans-serif;
}

.promise-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 150px;
    position: relative;
}

.promise-label {
    font-size: 14px;
    color: #999999;
    margin-bottom: 8px;
    font-family: 'Cabin', sans-serif;
}

.arrow-line {
    width: 100%;
    height: 2px;
    border-top: 2px dashed #0C6983;
    position: relative;
}

.arrow-line::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid #0C6983;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.commitment-text {
    text-align: center;
    font-size: 14px;
    color: #666666;
    margin-top: 20px;
    font-family: 'Cabin', sans-serif;
}

/* Content Area */
.foundation-content {
    padding-left: 20px;
}

.content-heading {
    font-size: 24px;
    font-weight: 700;
    color: #022029;
    margin-bottom: 20px;
    line-height: 1.4;
    font-family: 'Cabin', sans-serif;
}

.content-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: 'Cabin', sans-serif;
}

/* Feature Cards */
.foundation-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.foundation-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.card-icon {
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
    background-color: #B8D4E3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.card-icon i {
    font-size: 24px;
    color: #0C6983;
    transition: color 0.3s ease;
}

.foundation-card:hover .card-icon {
    background-color: #0C6983;
}

.foundation-card:hover .card-icon i {
    color: #ffffff;
}

.card-heading {
    font-size: 20px;
    font-weight: 700;
    color: #022029;
    margin-bottom: 12px;
    font-family: 'Cabin', sans-serif;
}

.card-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: 'Cabin', sans-serif;
}

/* Responsive Styles for Scientific Foundation */
@media (max-width: 992px) {
    .foundation-content {
        padding-left: 0;
        padding-top: 20px;
    }
    
    .content-heading {
        font-size: 22px;
    }
    
    .diagram-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .scientific-foundation-section {
        padding: 60px 0;
    }
    
    .foundation-heading {
        font-size: 32px;
    }
    
    .foundation-subtitle {
        font-size: 16px;
    }
    
    .diagram-card {
        padding: 24px;
    }
    
    .content-heading {
        font-size: 20px;
    }
    
    .content-text {
        font-size: 15px;
    }
    
    .foundation-card {
        padding: 24px;
    }
    
    .card-heading {
        font-size: 18px;
    }
    
    .card-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .scientific-foundation-section {
        padding: 40px 0;
    }
    
    .foundation-heading {
        font-size: 28px;
    }
    
    .foundation-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .diagram-card {
        padding: 20px;
    }
    
    .commitment-text {
        font-size: 12px;
    }
}
/* Platform Architecture Section Styles */
.platform-architecture-section {
    background-color: #ffffff;
    padding: 80px 0;
}

/* Header Area */
.platform-badge {
    display: inline-block;
    background-color: #B8D4E3;
    color: #0C6983;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Cabin', sans-serif;
}

.platform-heading {
    font-size: 42px;
    font-weight: 700;
    color: #022029;
    margin-bottom: 20px;
    font-family: 'Cabin', sans-serif;
}

.platform-intro {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Cabin', sans-serif;
}

.ai-highlight {
    color: #0C6983;
    font-weight: 700;
}

/* Promise Engine Content */
.promise-engine-content {
    padding-right: 30px;
}

.engine-heading {
    font-size: 28px;
    font-weight: 700;
    color: #022029;
    margin-bottom: 16px;
    font-family: 'Cabin', sans-serif;
}

.engine-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
    font-family: 'Cabin', sans-serif;
}

.engine-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.engine-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #666666;
    font-family: 'Cabin', sans-serif;
}

.feature-check-icon {
    color: #0C6983;
    font-size: 18px;
    flex-shrink: 0;
}

/* Process Flow Card */
.process-flow-card {
    /* background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #0C6983;
    padding: 30px; */
    position: relative;
}

.flow-card-header {
    position: absolute;
    top: 20px;
    right: 20px;
}

.ai-logo {
    background-color: #B8D4E3;
    color: #0C6983;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Cabin', sans-serif;
}

.flow-diagram-container {
    margin: 40px 0 30px;
    width: 100%;
}

.flow-diagram-image {
    width: 100%;
    height: auto;
    display: block;
}

.flow-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 15px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-center {
    text-align: center;
    flex: 1;
}

.metric-right {
    text-align: right;
}

.metric-label {
    font-size: 11px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Cabin', sans-serif;
}

.metric-value {
    font-size: 14px;
    color: #666666;
    font-weight: 600;
    font-family: 'Cabin', sans-serif;
}

.metric-highlight {
    color: #0C6983;
    font-weight: 700;
}

/* Promise Cards */
.promise-card {
    background-color: #F8FAFC;
    border: 1px solid #F1F5F9 !important;
    border-radius: 12px;
    padding: 16px;
    
    height: 100%;
    border: 1px solid transparent;
}

.promise-card:hover {
    background-color: #F8FAFC;
    border: 1px solid #96c8d6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.promise-card-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.promise-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: #fcfcfc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(122, 122, 122, 0.15);
}

.promise-icon-wrapper i {
    font-size: 24px;
    color: #5cb3cb;
   
}

.promise-text-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.promise-label {
    font-size: 11px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Cabin', sans-serif;
}

.promise-title {
    font-size: 18px;
    font-weight: 700;
    color: #3a3b3b;
    margin: 0;
    font-family: 'Cabin', sans-serif;
}

/* Responsive Styles for Platform Architecture */
@media (max-width: 992px) {
    .promise-engine-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .engine-heading {
        font-size: 24px;
    }
    
    .flow-metrics {
        justify-content: flex-start;
    }
    
    .metric-center {
        text-align: left;
        flex: 0 0 auto;
    }
    
    .metric-right {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .platform-architecture-section {
        padding: 60px 0;
    }
    
    .platform-heading {
        font-size: 32px;
    }
    
    .platform-intro {
        font-size: 16px;
    }
    
    .engine-heading {
        font-size: 22px;
    }
    
    .engine-description {
        font-size: 15px;
    }
    
    .process-flow-card {
        padding: 24px;
    }
    
    .flow-diagram-container {
        margin: 30px 0 20px;
    }
    
    .flow-metrics {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .metric-item {
        width: 100%;
    }
    
    .metric-center,
    .metric-right {
        text-align: left;
    }
    
    .promise-card {
        padding: 14px;
    }
    
    .promise-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .promise-icon-wrapper i {
        font-size: 20px;
    }
    
    .promise-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .platform-architecture-section {
        padding: 40px 0;
    }
    
    .platform-heading {
        font-size: 28px;
    }
    
    .platform-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .process-flow-card {
        padding: 20px;
    }
    
    .flow-card-header {
        top: 15px;
        right: 15px;
    }
    
    .ai-logo {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .promise-card {
        padding: 12px;
    }
    
    .promise-card-content {
        gap: 12px;
    }
    
    .promise-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .promise-icon-wrapper i {
        font-size: 18px;
    }
    
    .promise-title {
        font-size: 16px;
    }
    
    .promise-label {
        font-size: 10px;
    }
}

/* Why It Matters Section Styles */
.why-matters-section {
    background-color: #096F87;
    padding: 80px 0;
}

/* Header Area */
.enterprise-badge {
    display: inline-block;
    color: #BEDBFF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 8px;
    border-radius: 10px;
    font-family: 'Cabin', sans-serif;
    background-color: #1F6A7B;
}

.why-matters-heading {
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-family: 'Cabin', sans-serif;
}

.why-matters-intro {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Cabin', sans-serif;
}

/* Enterprise Cards */
.enterprise-card {
    background-color: #075A6D;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.enterprise-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: #1F6A7B;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.enterprise-icon-wrapper i {
    font-size: 32px;
    color: #53EAFD;
}

.enterprise-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.3;
    font-family: 'Cabin', sans-serif;
}

.enterprise-card-text {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    font-family: 'Cabin', sans-serif;
}

/* Responsive Styles for Why It Matters Section */
@media (max-width: 992px) {
    .why-matters-heading {
        font-size: 36px;
    }
    
    .why-matters-intro {
        font-size: 17px;
    }
    
    .enterprise-card {
        padding: 28px;
    }
    
    .enterprise-card-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .why-matters-section {
        padding: 60px 0;
    }
    
    .why-matters-heading {
        font-size: 32px;
    }
    
    .why-matters-intro {
        font-size: 16px;
    }
    
    .enterprise-card {
        padding: 24px;
    }
    
    .enterprise-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .enterprise-icon-wrapper i {
        font-size: 28px;
    }
    
    .enterprise-card-title {
        font-size: 18px;
    }
    
    .enterprise-card-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .why-matters-section {
        padding: 40px 0;
    }
    
    .why-matters-heading {
        font-size: 28px;
    }
    
    .enterprise-badge {
        font-size: 11px;
    }
    
    .why-matters-intro {
        font-size: 15px;
    }
    
    .enterprise-card {
        padding: 20px;
    }
    
    .enterprise-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .enterprise-icon-wrapper i {
        font-size: 24px;
    }
    
    .enterprise-card-title {
        font-size: 16px;
    }
    
    .enterprise-card-text {
        font-size: 14px;
    }
}

/* Compliant Section Styles */
.compliant-section {
    background-color: #f0f5f7;
    padding: 80px 0;
}

/* Log Window Container */
.log-window-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.log-window-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Compliant Content */
.compliant-content {
    padding-left: 40px;
}

.iso-badge {
    display: inline-block;
    background-color: #E0F7FA;
    color: #096F87;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Cabin', sans-serif;
}

.compliant-heading {
    font-size: 42px;
    font-weight: 700;
    color: #022029;
    margin-bottom: 20px;
    font-family: 'Cabin', sans-serif;
}

.compliant-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: 'Cabin', sans-serif;
}

/* Compliant Features */
.compliant-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.compliant-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.compliant-feature-icon {
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    border: 0.8px solid #E2E8F0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.compliant-feature-icon i {
    font-size: 24px;
    color: #0C6983;
}

.compliant-feature-content {
    flex: 1;
}

.compliant-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #022029;
    margin-bottom: 8px;
    font-family: 'Cabin', sans-serif;
}

.compliant-feature-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Cabin', sans-serif;
}

/* Responsive Styles for Compliant Section */
@media (max-width: 992px) {
    .compliant-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .compliant-heading {
        font-size: 36px;
    }
    
    .compliant-description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .compliant-section {
        padding: 60px 0;
    }
    
    .compliant-heading {
        font-size: 32px;
    }
    
    .compliant-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .compliant-features {
        gap: 20px;
    }
    
    .compliant-feature-title {
        font-size: 18px;
    }
    
    .compliant-feature-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .compliant-section {
        padding: 40px 0;
    }
    
    .compliant-heading {
        font-size: 28px;
    }
    
    .iso-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .compliant-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .compliant-feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .compliant-feature-icon i {
        font-size: 20px;
    }
    
    .compliant-feature-title {
        font-size: 16px;
    }
    
    .compliant-feature-text {
        font-size: 14px;
    }
}

/* Key Outcomes Section Styles */
.key-outcomes-section {
    background-color: #096F87;
    padding: 80px 0;
}

/* Header Area */
.outcomes-badge {
    display: inline-block;
    background-color: #1F6A7B;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Cabin', sans-serif;
}

.outcomes-heading {
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-family: 'Cabin', sans-serif;
}

.outcomes-subtitle {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Cabin', sans-serif;
}

/* Outcome Cards */
.key-outcomes-section .row {
    margin-left: -15px;
    margin-right: -15px;
}

.key-outcomes-section .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.outcome-card {
    background-color: #075A6D;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.outcome-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background-color: #1F6A7B;
    border-radius: 8px;
}

.outcome-icon-wrapper i {
    font-size: 32px;
    color: #53EAFD;
}

.outcome-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: 'Cabin', sans-serif;
}

.outcome-card-text {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    margin-top: auto;
    font-family: 'Cabin', sans-serif;
}

/* Responsive Styles for Key Outcomes Section */
@media (max-width: 992px) {
    .outcomes-heading {
        font-size: 36px;
    }
    
    .outcomes-subtitle {
        font-size: 17px;
    }
    
    .outcome-card {
        padding: 20px;
    }
    
    .outcome-card-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .key-outcomes-section {
        padding: 60px 0;
    }
    
    .outcomes-heading {
        font-size: 32px;
    }
    
    .outcomes-subtitle {
        font-size: 16px;
    }
    
    .outcome-card {
        padding: 20px;
    }
    
    .outcome-icon-wrapper {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }
    
    .outcome-icon-wrapper i {
        font-size: 28px;
    }
    
    .outcome-card-title {
        font-size: 16px;
    }
    
    .outcome-card-text {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .key-outcomes-section {
        padding: 40px 0;
    }
    
    .outcomes-heading {
        font-size: 28px;
    }
    
    .outcomes-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .outcomes-subtitle {
        font-size: 15px;
    }
    
    .outcome-card {
        padding: 18px;
    }
    
    .outcome-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .outcome-icon-wrapper i {
        font-size: 24px;
    }
    
    .outcome-card-title {
        font-size: 15px;
    }
    
    .outcome-card-text {
        font-size: 12px;
    }
}

/* Agents Section Styles */
.agents-section {
    background-color: #ffffff;
    padding: 80px 0;
}

/* Header Area */
.agents-badge {
    display: inline-block;
    color: #096F87;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Cabin', sans-serif;
}

.agents-heading {
    font-size: 42px;
    font-weight: 700;
    color: #022029;
    margin-bottom: 20px;
    font-family: 'Cabin', sans-serif;
}

.agents-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Cabin', sans-serif;
}

/* Agent Cards */
.agent-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.agent-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.agent-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: #F2F8F9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.agent-icon-wrapper i {
    font-size: 28px;
    color: #096F87;
}

.agent-number {
    background-color: #F8FAFC;
    color: #90A1B9;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Cabin', sans-serif;
}

.agent-title {
    font-size: 24px;
    font-weight: 700;
    color: #022029;
    margin-bottom: 8px;
    font-family: 'Cabin', sans-serif;
}

.agent-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #0C6983;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-family: 'Cabin', sans-serif;
}

.agent-card-description {
    font-size: 16px;
    color: #45556C;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    font-family: 'Cabin', sans-serif;
}

.agent-capabilities {
    margin-top: auto;
}

.capabilities-title {
    font-size: 14px;
    font-weight: 700;
    color: #022029;
    margin-bottom: 12px;
    font-family: 'Cabin', sans-serif;
}

.capabilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capabilities-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: #45556C;
    line-height: 1.6;
    margin-bottom: 8px;
    font-family: 'Cabin', sans-serif;
}

.capabilities-list li:last-child {
    margin-bottom: 0;
}

.capabilities-list li i {
    color: #0C6983;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive Styles for Agents Section */
@media (max-width: 992px) {
    .agents-heading {
        font-size: 36px;
    }
    
    .agents-description {
        font-size: 17px;
    }
    
    .agent-card {
        padding: 20px;
    }
    
    .agent-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .agents-section {
        padding: 60px 0;
    }
    
    .agents-heading {
        font-size: 32px;
    }
    
    .agents-description {
        font-size: 16px;
    }
    
    .agent-card {
        padding: 20px;
    }
    
    .agent-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .agent-icon-wrapper i {
        font-size: 24px;
    }
    
    .agent-title {
        font-size: 20px;
    }
    
    .agent-card-description {
        font-size: 15px;
    }
    
    .capabilities-list li {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .agents-section {
        padding: 40px 0;
    }
    
    .agents-heading {
        font-size: 28px;
    }
    
    .agents-badge {
        font-size: 11px;
    }
    
    .agents-description {
        font-size: 15px;
    }
    
    .agent-card {
        padding: 18px;
    }
    
    .agent-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .agent-icon-wrapper i {
        font-size: 22px;
    }
    
    .agent-number {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .agent-title {
        font-size: 18px;
    }
    
    .agent-subtitle {
        font-size: 11px;
    }
    
    .agent-card-description {
        font-size: 14px;
    }
    
    .capabilities-title {
        font-size: 13px;
    }
    
    .capabilities-list li {
        font-size: 12px;
    }
}

/* Lead Magnet Section Styles */
.lead-magnet-section {
    background-color: #096F87;
    padding: 30px 0;
}

/* Left Content Area */
.lead-magnet-content {
    padding-right: 40px;
}

.lead-badge {
    display: inline-block;
    background-color: #E2E8F0;
    color: #666666;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-family: 'Cabin', sans-serif;
}

.lead-heading {
    font-size: 38px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Cabin', sans-serif;
}

.lead-description {
    font-size: 18px;
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 32px;
    font-family: 'Cabin', sans-serif;
}

.lead-benefits {
    display: flex;
    /* flex-direction: column; */
    gap: 16px;
}

.lead-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #FFFFFF;
    font-family: 'Cabin', sans-serif;
}

.benefit-check {
    color: #4CAF50;
    font-size: 20px;
    flex-shrink: 0;
}

/* Right Form Area */
.lead-form-container {
    /* background-color: #ffffff; */
    border-radius: 12px;
    padding: 40px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); */
}

.lead-form-heading {
    font-size: 28px;
    font-weight: 700;
    color: #022029;
    margin-bottom: 12px;
    font-family: 'Cabin', sans-serif;
}

.lead-form-subtext {
    font-size: 16px;
    color: #666666;
    margin-bottom: 32px;
    font-family: 'Cabin', sans-serif;
}

.lead-form-wrapper {
    margin-bottom: 24px;
    min-height: 300px;
}

.lead-form-privacy {
    font-size: 12px;
    color: #999999;
    text-align: center;
    margin-top: 16px;
    font-family: 'Cabin', sans-serif;
}

/* Responsive Styles for Lead Magnet Section */
@media (max-width: 992px) {
    .lead-magnet-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .lead-heading {
        font-size: 36px;
    }
    
    .lead-description {
        font-size: 17px;
    }
    
    .lead-form-container {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .lead-magnet-section {
        padding: 60px 0;
    }
    
    .lead-heading {
        font-size: 32px;
    }
    
    .lead-description {
        font-size: 16px;
    }
    
    .lead-benefit-item {
        font-size: 15px;
    }
    
    .lead-form-container {
        padding: 24px;
    }
    
    .lead-form-heading {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .lead-magnet-section {
        padding: 40px 0;
    }
    
    .lead-heading {
        font-size: 28px;
    }
    
    .lead-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .lead-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .lead-benefit-item {
        font-size: 14px;
    }
    
    .lead-form-container {
        padding: 20px;
    }
    
    .lead-form-heading {
        font-size: 22px;
    }
    
    .lead-form-subtext {
        font-size: 14px;
    }
}

/* Promise Action Button Styles */
.promise-action-btn {
    background-color: #FFFFFF !important;
    border: 1px solid #0c6983 !important;
    color: #0c6983 !important;
    padding: 12px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: background-color 0.3s ease;
}

.promise-action-btn:hover {
    background-color: #f0f9fa !important;
}

.promise-action-btn i {
    color: #0c6983;
    font-size: 14px;
}

/* YouTube Video Modal Styles */
.youtube-modal-content {
    background-color: #000000;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.youtube-modal-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 30px;
}

.youtube-modal-header .modal-title {
    color: #022029;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Cabin', sans-serif;
}

.youtube-modal-header .btn-close {
    filter: none;
    opacity: 0.8;
}

.youtube-modal-header .btn-close:hover {
    opacity: 1;
}

.youtube-modal-body {
    padding: 0;
    background-color: #000000;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Styles for YouTube Modal */
@media (max-width: 1200px) {
    .youtube-modal-header {
        padding: 18px 25px;
    }
    
    .youtube-modal-header .modal-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .youtube-modal-header {
        padding: 15px 20px;
    }
    
    .youtube-modal-header .modal-title {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .youtube-modal-header {
        padding: 12px 15px;
    }
    
    .youtube-modal-header .modal-title {
        font-size: 14px;
    }
}
