/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #F5F5F0;
    color: #2C5F8D;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    background-color: #F5F5F0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    font-weight: bold;
    color: #2C5F8D;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: #2C5F8D;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #5B9BD5;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    position: relative;
}

.hero-content {
    background-color: #2C5F8D;
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-text {
    max-width: 600px;
    color: white;
    z-index: 2;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.4;
}

.btn-learn-more {
    background-color: #5B9BD5;
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-learn-more:hover {
    background-color: #4A8BC2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hero Illustration */
.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 100%;
}

.illustration {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Человек с ноутбуком (упрощенная версия) */
/*.illustration::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #7BA7CC 0%, #5B9BD5 100%);
    border-radius: 50%;
    opacity: 0.3;
}
*/
/* Декоративные элементы */
.circle {
    position: absolute;
    border-radius: 50%;
    background-color: #5B9BD5;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 80px;
    right: 120px;
    opacity: 0.6;
}

.circle-2 {
    width: 40px;
    height: 40px;
    bottom: 180px;
    right: 200px;
    background-color: #7BA7CC;
}

.square {
    position: absolute;
    background-color: #5B9BD5;
    opacity: 0.5;
}

.square-1 {
    width: 30px;
    height: 30px;
    top: 200px;
    right: 250px;
}

.square-2 {
    width: 20px;
    height: 20px;
    bottom: 280px;
    left: 380px;
}

.square-3 {
    width: 40px;
    height: 40px;
    top: 50px;
    right: 300px;
    background-color: #7BA7CC;
}

/* Фоновые круги */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    background-color: #5B9BD5;
    opacity: 0.15;
}

.bg-circle-left {
    width: 150px;
    height: 150px;
    left: -75px;
    top: 50%;
    transform: translateY(-50%);
}

.bg-circle-right {
    width: 200px;
    height: 200px;
    right: -100px;
    top: 0;
    background: linear-gradient(135deg, #5B9BD5 0%, #7BA7CC 100%);
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    position: relative;
}

.solutions h2 {
    font-size: 48px;
    font-weight: bold;
    color: #2C5F8D;
    margin-bottom: 60px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.solution-card {
    text-align: left;
}

.icon {
    margin-bottom: 20px;
    height: 100px;
    display: flex;
    align-items: center;
}

.solution-card h3 {
    font-size: 24px;
    color: #2C5F8D;
    margin-bottom: 15px;
    font-weight: bold;
}

.solution-card p {
    font-size: 16px;
    color: #2C5F8D;
    line-height: 1.5;
}

.bg-circle-solutions {
    width: 180px;
    height: 180px;
    right: 50px;
    bottom: 100px;
}

/* Responsive */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-text h1 {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .nav {
        gap: 20px;
    }
    
    .hero-content {
        flex-direction: column;
        padding: 40px 30px;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}