/* General Body Styles */
body {
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
    margin: 0;
    background-color: #f4f4f4; /* Light grey background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background-color: #002244;
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
}

.navbar-nav {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 25px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #002244, #00528a);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.intro-list__item {
    margin: 5px 15px;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #007bff;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block;
    margin-bottom: 10px;
}

.btn-primary:hover {
    background-color: white;
    color: #007bff;
}

.intro-button__description {
    font-size: 14px;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: white;
}

.row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.col-md-4 {
    text-align: center;
    max-width: 300px; /* Set a max-width for better spacing */
    margin: 20px;
}

.advantage-item img {
    width: 60px;
    margin-bottom: 20px;
}

.advantage-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #002244;
}

.advantage-item p {
    color: #333;
    font-size: 16px;
}

/* Contacts Section */
.contacts {
    padding: 60px 0;
    text-align: center;
    background-color: #002e5b;
    color: white;
}

.contacts h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contacts-phone {
    font-size: 32px;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #002244;
    color: white;
    padding: 40px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-nav {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    margin-left: 20px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
}

.footer__copyrights {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}