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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fc;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

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

header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

header p{
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.intro, .comparison {
    background-color: white;
    padding: 40px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.intro h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.comparison h2 {
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}

.intro p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}

.intro ul {
    list-style-type: disc;
    margin-left: 40px;
    text-align: left;
    padding-left: 20px;
}

.intro li {
    font-size: 18px;
    margin-bottom: 15px;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

table th, table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 16px;
}

table th {
    background-color: #f7f7f7;
    font-weight: bold;
}

.images {
    margin-top: 50px;
}

.image-container {
    text-align: center;
    margin-top: 20px;
}

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

footer {
    background: linear-gradient(135deg, #2d3e50, #4e54c8);
    color: white;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.1);
}

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

footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 10px;
}

footer strong {
    color: #fff;
}

@media (max-width: 768px) {
    footer p {
        font-size: 0.9rem;
    }
}

button:hover {
    background-color: #3a3f8c;
}

a {
    color: #4e54c8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1.2rem;
    }

    .container {
        width: 90%;
    }
}

.team {
    background-color: #fff;
    padding: 40px 0;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.team-member {
    margin-bottom: 30px;
    text-align: center;
    flex: 1;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member img {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

button {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

button:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.team-member p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.team-member a {
    color: #4e54c8;
    text-decoration: none;
}

.team-member a:hover {
    text-decoration: underline;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        margin-bottom: 20px;
    }

    .team-member img {
        width: 100px;
        height: 100px;
    }

    .team-member h3 {
        font-size: 20px;
    }

    .team-member p {
        font-size: 14px;
    }
}

.conclusion {
    background-color: #fff;
    padding: 50px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
    color: #333;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #4e54c8;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-title {
    font-size: 26px;
    font-weight: 600;
    color: #2d3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.insight-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.insight-list li {
    font-size: 16px;
    line-height: 1.8;
    padding: 10px;
    margin-bottom: 15px;
    border-left: 5px solid #4e54c8;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.insight-list li:hover {
    background-color: #e8e8ff;
}

.insight-list li strong {
    color: #333;
}

.conclusion p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .sub-title {
        font-size: 22px;
    }

    .intro-text {
        font-size: 16px;
    }

    .insight-list li {
        font-size: 14px;
    }

    .container {
        width: 90%;
    }
}

.details {
    background-color: #ffffff;
    padding: 50px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #333;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #4e54c8;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

.metrics-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
    font-size: 16px;
}

.metrics-list li {
    padding: 12px 20px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    border-left: 5px solid #4e54c8;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.metrics-list li:hover {
    background-color: #f0f0f7;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.metrics-list li strong {
    color: #333;
}

.conclusion-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .conclusion-text {
        font-size: 16px;
    }
}

a, button {
    transition: background-color 0.3s ease, color 0.3s ease;
}

a:hover, button:hover {
    background-color: #3a3f8c;
    color: #fff;
}

.insight-list li, .metrics-list li {
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

.insight-list li:hover, .metrics-list li:hover {
    transform: translateX(5px);
    background-color: #e8e8ff;
}

@media (max-width: 768px) {
    .intro p {
        font-size: 16px;
    }

    .intro ul {
        margin-left: 20px;
    }

    .intro li {
        font-size: 16px;
    }
}