﻿:root {
    --primary-color: #3A52CC;
    --primary-dark: #3A52CC;
    --secondary-color: #1d2239;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #F8F9FA;
    --border-color: #E0E0E0;
    --accent-orange: #FF8D3A;
}
.marginTop{
    margin-top:100px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: #fff;
}

.header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

    .header h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .header p {
        font-size: 1.2rem;
        opacity: 0.95;
        max-width: 800px;
        margin: 0 auto;
    }

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

.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.intro-section {
    background: var(--bg-light);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

    .intro-content p {
        margin-bottom: 1.5rem;
    }

.highlight-box {
    background: white;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 4px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.approach-section {
    background: var(--bg-light);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card h3 {
    color: var(--secondary-color);
    margin: 1rem 0;
    font-size: 1.2rem;
}

.step-card ul {
    list-style: none;
    padding-left: 0;
}

.step-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

    .step-card li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: bold;
    }

.contribution-section {
    background: white;
}

.contribution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contribution-item {
    text-align: center;
    padding: 2rem 1rem;
}

.contribution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.contribution-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.contribution-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.services-section {
    background: white;
    padding: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.service-badge {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    text-align: center;
    transition: all 0.3s ease;
}

    .service-badge:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .service-badge h4 {
        color: var(--secondary-color);
        font-size: 1rem;
        margin-bottom: 0.3rem;
        font-weight: 600;
    }

    .service-badge:hover h4 {
        color: white;
    }

    .service-badge p {
        color: var(--text-light);
        font-size: 0.85rem;
    }

    .service-badge:hover p {
        color: white;
        opacity: 0.95;
    }

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

    .header p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .benefits-grid,
    .approach-steps,
    .contribution-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }
}
.mail-icon {
    height: 70px;
    width: 70px;
    margin-bottom: 30px;
}

.mail-text {
    color: #7A7A7A;
    font-family: "Open Sans";
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}

.container-mail {
    margin-top: 100px;
    text-align: center;
}
.azure-img {
    width: 100%;
}
.icon-cards {
    height: 80px;
    object-fit: contain;
}
.icon-items {
    height: 100px;
    object-fit: contain;
}