﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
}

    .header h1 {
        font-size: 3.5em;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.problem-section {
    background: #f8f9fa;
    padding: 50px 40px;
    border-right: 3px solid #e9ecef;
}

.solution-section {
    background: white;
    padding: 50px 40px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 1.5em;
    font-weight: 700;
}

.problem-section .section-header {
    color: #dc3545;
}

.solution-section .section-header {
    color: #ff8c42;
}

.icon {
    font-size: 1.8em;
}

.item {
    margin-bottom: 35px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-section .item {
    background: #f8f9fa;
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 12px;
}

.item p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1.05em;
}

.emoji {
    font-size: 1.5em;
}

.cta-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: #ff8c42;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,140,66,0.4);
}

    .cta-button:hover {
        background: #ff7629;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255,140,66,0.6);
    }

.cta-text {
    font-size: 1.3em;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .problem-section {
        border-right: none;
        border-bottom: 3px solid #e9ecef;
    }

    .header h1 {
        font-size: 2em;
    }

    .header, .problem-section, .solution-section {
        padding: 30px 20px;
    }
}

