/* style.css для главной страницы (pre-landing) */
body { 
    font-family: 'Arial', sans-serif; 
    margin:0; 
    padding:0; 
    background: linear-gradient(to bottom, #a8edea, #fed6e3); 
    color:#333; 
}

header { 
    background: rgba(255,255,255,0.9); 
    padding: 40px 20px; 
    text-align:center; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
}

header h1 { 
    margin:0; 
    font-size:2.5em; 
    color:#2b6cb0; 
}

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

.card { 
    background: rgba(255,255,255,0.95); 
    padding:30px; 
    border-radius:15px; 
    box-shadow:0 6px 12px rgba(0,0,0,0.15); 
    margin-bottom:25px; 
    display:flex; 
    align-items:center; 
    transition: transform 0.3s, box-shadow 0.3s; 
}

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

.card img { 
    width:60px; 
    height:60px; 
    margin-right:20px; 
}

h2 { color:#1e3a8a; }

p, ul { line-height:1.7; }

ul { padding-left:20px; }

.btn-wrap { text-align:center; margin:40px 0; }

a.button { 
    padding:16px 32px; 
    background:#2b6cb0; 
    color:#fff; 
    border-radius:10px; 
    text-decoration:none; 
    font-size:20px; 
    display:inline-block; 
    transition: all 0.3s; 
}

a.button:hover { 
    background:#1e5086; 
    transform:scale(1.05); 
}

footer { 
    text-align:center; 
    padding:25px; 
    font-size:14px; 
    color:#555; 
}

@keyframes fadeInUp { 
    from { opacity:0; transform: translateY(20px); } 
    to { opacity:1; transform: translateY(0); } 
}

.fade-in-up { 
    animation: fadeInUp 1s ease forwards; 
    opacity:0; 
}
