:root {
    --cyprus: #004643;
    --sand: #F0EDE5;
    --highlight: #F9BC60;
    --white: #ffffff;
    --dark: #1e1e1e;
    --light: #f8f9fa;
}

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

body {
    padding: 0;
    margin: 0;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 75px;
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: linear-gradient(to bottom, #e3f1ef 0%, #ffffff 80%);
}

img,
video,
canvas,
svg {
    max-width: 100%;
    display: block;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 0;
    line-height: 1.2;
}

p {
    margin: 0 0 1.5rem;
    line-height: 1.6;
    color: var(--dark);
}

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

a:hover {
    color: var(--highlight);
}

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

.section-title {
    position: relative;
    display: block;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--cyprus);
    text-align: center;
    width: 100%;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--highlight);
    border-radius: 2px;
}

.btn {
    background-color: var(--cyprus);
    border: 2px solid var(--cyprus);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.btn:hover {
    background-color: #003a37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--cyprus);
}




@media (max-width: 768px) {
    .navbar-collapse {
        background: var(--sand);
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    html {
        scroll-padding-top: 70px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    html {
        scroll-padding-top: 65px;
    }
}