/* Основные стили */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #003366;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

header .logo img:hover {
    transform: scale(1.1);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffcc00;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('images/background.jpg') no-repeat center center/cover;
    color: white;
}

img {
    border-radius: 5%;
  }

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    animation: fadeIn 2.5s ease-in-out;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 1.5s ease-in-out;
}

.about, .services {
    padding: 60px 40px;
    background-color: white;
    margin: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1.5s ease-in-out;
}

.about h2, .services h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
    text-align: center;
}

.about p, .services ul {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services ul li {
    background-color: #f4f4f9;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Добавьте эти стили в файл styles.css */
.projects, .contact {
    padding: 20px;
    background-color: white;
    margin: 20px;
    border-radius: 8px;
    
}

.projects ul, .services ul {
    list-style-type: disc;
    padding-left: 20px;
    max-width: 800px;
}

.contact p {
    margin: 10px 0;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #003366;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

