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

:root {
    /* Layout Variables */
    --max-width: 1400px;
    --container-padding: 40px;

    /* Color Variables */
    --primary-pr1: #E0EBE3;
    --primary-pr4: #659A71;
    --primary-pr5: #507C5B;
    --primary-pr7: #283E2D;
    --neutral-nt2: #E1E2EA;
    --neutral-nt4: #9BA0C5;
    --neutral-nt6: #696F96;
    --neutral-nt8: #3F425A;
    --neutral-white: #FFFFFF;
    --smooth-white: #F2F3F7;
    --warning-wr5: #E59C4D;
}

/* Tablet Breakpoints - Added full tablet support */
@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --container-padding: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 15px;
    }
}

body {
    font-family: 'Outfit', sans-serif;
    color: #3F425A;
    line-height: 1.6;
    background-color: #F2F3F7;
    overflow-x: hidden;
}

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

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

button {
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.container,
.container-1400 {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}


.alert {
    padding: 15px 20px;
    margin: 20px auto;
    border-radius: 8px;
    font-size: 14px;
    max-width: 1200px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #6B9B7C;
    color: white;
}

.btn-primary:hover {
    background-color: #5a8569;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #6B9B7C;
    color: #6B9B7C;
}

.btn-outline:hover {
    background-color: #6B9B7C;
    color: white;
}


section {
    padding: 60px 0;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #333;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
}

p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}
