:root {
    /* Primary Colors */
    --primary-color: #0070C0;
    --primary-hover: #005999;

    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #475569;
    --text-light: #525252;

    /* Background Colors */
    --bg-primary: #fff;
    --bg-secondary: #f8fafc;

    /* Shadow Colors */
    --shadow-color: rgba(0, 0, 0, 0.1);

    /* Font Family */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* General Styles */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-light);
}

p {
    font-weight: 400;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-primary);
}

/* Hero Section */
.hero-banner {
    background: url('images/Hero-Section.png') no-repeat center center;
    background-size: cover;
    position: relative;

}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner h1 {
    font-weight: 600;
    font-size: 48px;
    line-height: 64px;
    color: var(--text-primary);
}

.hero-banner p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Underperformance Section */
.underperformance {
    background-color: var(--bg-primary);
    padding: 5rem 0;
}

.underperformance h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 47px;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.underperformance h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 34px;
    color: var(--primary-color);
    margin-bottom: 0rem;
}

.underperformance h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 34px;
    color: var(--primary-color);
    margin-bottom: 0rem;
}

.underperformance p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0rem;
    color: var(--text-secondary);
}

.underperformance ul li {
    margin-bottom: 2rem;
}

.underperformance .list li::marker {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
}

.underperformance h2 span {
    color: var(--primary-color);
}

/* Friction Section Styles */
.friction-section {
    background: url('images/friction-section-bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}


.friction-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 36px;
    line-height: 47px;
    margin-bottom: 3rem;
}

.step-card {
    width: 80px;
    height: 80px;
    background-color: #4392CA;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.step-title {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-description.bolder {
    color: #0070C0;
}

.step-description {
    font-size: 16px;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

.step-arrow {
    opacity: 0.8;
}

.bolder {
    font-weight: 700;
}

.communication-section h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 32px;
    line-height: 47px;
}

.communication-section span {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: var(--primary-color);
}

.communication-section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0rem;
    color: var(--text-secondary);
}

.communication-section h5 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-primary);
}

.communication-section .step-number {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
    line-height: 16px;
    justify-content: center;
}

.communication-section .list li::marker {
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
}

.communication-section .list h4 {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-section {
    background-color: #081F37;
    color: #fff;
}

.form-section h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;

}

.form-section p{
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}
.form-area{
    background: #FFFFFF0A;

    padding: 2rem;
    border-radius: 16px;
}


.footer {
    background-color: #E5F1F9;
    padding: 100px 0;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .underperformance h2 {
        font-size: 2rem;
    }

    .hero-banner, .underperformance {
        padding: 3rem 0;
    }

    .friction-title {
        font-size: 28px;
        line-height: 36px;
    }

    .step-card {
        width: 70px;
        height: 70px;
    }

    .step-number {
        font-size: 28px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-description {
        font-size: 14px;
    }
}