* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    color: #333;
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 28pt;
    margin: 20px 0;
    color: #2c3e50;
    text-align: center;
}

.site-header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 5%;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo a {
    display: block;
    line-height: 1;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
    transition: transform 0.2s;
}

.logo img:hover {
    transform: scale(1.02);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-list li a i {
    font-size: 16px;
}

.nav-list li a:hover {
    background-color: #ffd966;
    color: #2c3e50;
    transform: translateY(-2px);
}

.nav-list li a.active {
    background-color: #f39c12;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.mission {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.mission-title {
    font-size: 26px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.mission-text {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-size: 26px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.about-categ {
    max-width: 800px;
    margin: 60px auto;
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.categ-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.categ-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.categ-card:last-child {
    border-bottom: none;
}

.categ-card-img {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #ffd966, #f39c12);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.categ-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.categ-card-content {
    flex: 1;
}

.categ-card-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.site-footer {
    background-color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 60px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    font-family: 'Open Sans', sans-serif;
}

.footer-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-con {
    text-align: left;
}

.footer-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 10px;
    color: black;
    font-size: 15px;
    line-height: 1.6;
}

.footer-list a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #f39c12;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #777;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-links a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-list {
        justify-content: center;
    }

    .nav-list li a {
        padding: 8px 16px;
        font-size: 14px;
    }

    .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .about-categ {
        margin: 30px 15px;
        padding: 20px;
    }

    .categ-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .categ-card-img {
        width: 80px;
        height: 80px;
    }

    .mission {
        margin: 30px 15px;
        padding: 25px 20px;
    }

    .mission-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .mission-title {
        font-size: 22px;
    }

    .categ-card-text {
        font-size: 14px;
    }

    .mission-text {
        font-size: 16px;
        line-height: 1.6;
    }
}

