:root {
    --primary-color: #0078d4;
    --secondary-color: #2b579a;
    --text-color: #333;
    --background-color: #f5f5f5;
    --card-background: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.check-list {
    list-style: none;
    padding-left: 1.5rem;
}

.check-list li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}

.check-list li::before {
    content: "✅";
    position: absolute;
    left: -1.5rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-column ul {
    list-style: none;
}

.tech-column li {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    transition: transform 0.2s;
}

.tech-column li:hover {    transform: translateX(5px);
    background-color: #e9ecef;
}

.text-center {
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.2s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.apply {
    text-align: center;
}

.apply a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.apply a:hover {
    text-decoration: underline;
}

.emphasis {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    padding: 1rem;
    margin: 1rem 0;
    background-color: rgba(0, 120, 212, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    section {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
