:root {
    --primary-color: #007DB4;
    --primary-dark: #005a8a;
    --text-color: #364153;
    --text-muted: #4A5565;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
}

@media (min-width: 1400px) and (max-width: 1536px) {
  html {
    font-size: 93.75%;
    -webkit-text-size-adjust: 93.75%;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  html {
    font-size: 87.5%;
    -webkit-text-size-adjust: 87.5%;
  }
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 64px;
    text-transform: uppercase;
}

.section-title--blue {
    color: var(--primary-color);
}

.section-title--white {
    color: var(--bg-white);
}


.header {
    background: var(--bg-white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__image {
    display: block;
    margin: 0;
    width: 172px;
    height: auto;
}

.logo__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
}

.nav__link:hover {
    color: var(--primary-color);
}

.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('images/hero_banner.jpg') center center / cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 32px;
    max-width: 672px;
    text-align: center;
    margin: 0 auto;
}

.hero__title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.services {
    background-color: var(--bg-light);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card__img-wrapper {
    aspect-ratio: 3 / 2;
    height: auto;
    overflow: hidden;
}

.card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card__img {
    transform: scale(1.05);
}

.card__content {
    padding: 24px 24px 48px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.card__title--blue {
    color: var(--primary-color);
}

.card__desc{
    color: var(--text-muted);
}

.meaning {
    background: linear-gradient(rgba(10, 15, 20, 0.8), rgba(10, 15, 20, 0.8)), url('images/meaning_background.png') center center / cover no-repeat;
    background-attachment: fixed;
    color: var(--bg-white);
}

.meaning__container {
    max-width: 1148px;
}

.meaning__header {
    text-align: center;
}

.meaning__title {
    margin-bottom: 32px;
}

.meaning__values {
    margin-top: 48px;
}

.values__title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.values__title--white {
    color: var(--bg-white);
}

.values__desc {
    text-align: center;
    margin-bottom: 40px;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-item {
    text-align: center;
}

.value-item__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--bg-white);
    text-transform: uppercase;
}

.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding-bottom: 46px;
}

.footer__title {
    margin-bottom: 32px;
}

.footer__info {
    max-width: 864px;
    margin: 0 auto;
}

.footer__copyright {
    text-align: center;
    margin-top: 46px;
    font-size: 1rem;
}

.info-list__item {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
    padding: 16px 0;
}

.info-list__item

.info-list__label {
    width: 33%;
    font-weight: 600;
    font-size: 1rem;
}

.info-list__value {
    width: 67%;
    font-size: 1rem;
    line-height: 1.6;
}

.info-list__value a:hover {
    text-decoration: underline;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle__bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

.nav-toggle--open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle--open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle--open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .section{
        padding: 60px 0;
    }

    .section-title{
        margin-bottom: 32px !important;
    }

    .values__grid {
        gap: 20px;
    }

    .services br, .meaning br{
        display: none;
    }

    .footer.section{
        padding-bottom: 24px;
    }

    .footer__copyright{
        margin-top: 24px;
    }
}

@media (max-width: 768px) {

    .header__container {
        flex-direction: row;        
        justify-content: space-between;
        gap: 0;
    }

    .nav-toggle {
        display: block;
    }

    .header__nav {
        position: fixed;
        top: 67px;        
        left: -100%;
        width: 100%;
        height: calc(100vh - 67px);
        background-color: var(--primary-color);
        transition: left 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        padding-top: 40px;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    }

    .header__nav.nav--open {
        left: 0;
    }
    
    .nav__list {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
    }

    .nav__link {
        font-size: 1.25rem;
        color: #fff;
    }

    .hero {
        height: auto;
        padding: 80px 20px;
    }
    
    .hero__content {
        padding: 30px 20px;
    }
    
    .values__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-list__item {
        flex-direction: column;
        gap: 8px;
        padding: 12px 0;
    }
    
    .info-list__label, .info-list__value {
        width: 100%;
    }

    .footer.section{
        padding-bottom: 16px;
    }

    .footer__copyright{
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .section{
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px !important;
    }
    
    .hero__title {
        font-size: 24px;
    }

    .meaning__values{
        margin-top: 32px;
    }
}
