:root {
    --primary: #669966;
    --primary-hover: #4f7f4f;
    --secondary: #cc9966;
    --secondary-hover: #b07f4f;
    --accent: #3f5d7d;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #fff;
    --footer-bg: #f8f8f8;
    --border-color: #e5e5e5;
}

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

body {
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button,
a,
select,
input,
textarea {
    cursor: pointer;
    font-family: "Instrument Sans", sans-serif;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Varela Round", sans-serif;
}

.title-highlight {
    color: #d4af37;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.med-hero {
    min-height: 70vh;
    background: var(--primary-hover);
    margin: 72px 20px 20px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.med-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.med-hero-content {
    max-width: 550px;
}

.med-hero-title {
    font-family: "Varela Round", sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-light);
}

.med-hero-features {
    list-style: none;
    margin-bottom: 32px;
}

.med-hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-light);
}

.med-hero-feature-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.med-hero-feature-icon i {
    color: var(--text-light);
    font-size: 12px;
}

.med-hero-cta {
    background: var(--secondary);
    color: var(--text-light);
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: "Instrument Sans", sans-serif;
}

.med-hero-cta:hover {
    background: var(--secondary-hover);
    transform: translateX(4px);
}

.med-hero-cta i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.med-hero-cta:hover i {
    transform: translateX(4px);
}

.med-hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 85%;
    z-index: 1;
}

.med-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

@media (max-width: 1200px) {
    .med-hero-image {
        width: 40%;
        height: 80%;
    }
}

@media (max-width: 1024px) {
    .med-hero {
        min-height: 60vh;
    }

    .med-hero-title {
        font-size: 32px;
    }

    .med-hero-image {
        width: 38%;
        height: 75%;
    }
}

@media (max-width: 768px) {
    .med-hero {
        margin: 60px 16px 16px;
        min-height: 50vh;
        border-radius: 16px;
    }

    .med-hero-container {
        padding: 40px 20px;
    }

    .med-hero-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .med-hero-feature {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .med-hero-feature-icon {
        width: 26px;
        height: 26px;
    }

    .med-hero-cta {
        padding: 12px 28px;
        font-size: 13px;
    }

    .med-hero-image {
        width: 45%;
        height: 65%;
    }
}

@media (max-width: 480px) {
    .med-hero {
        min-height: 45vh;
    }

    .med-hero-content {
        max-width: 100%;
    }

    .med-hero-title {
        font-size: 22px;
    }

    .med-hero-image {
        width: 42%;
        height: 60%;
    }
}

.med-chk-section {
    padding: 80px 20px;
    background: var(--bg-light);
    width: 100%;
    overflow: hidden;
}

.med-chk-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    /* background: linear-gradient(
        135deg,
        rgba(102, 153, 102, 0.15) 0%,
        rgba(204, 153, 102, 0.1) 100%
    ); */
    border-radius: 24px;
    padding: 80px 60px;
    position: relative;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.med-chk-title {
    font-family: "Varela Round", sans-serif;
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 400;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.med-chk-title.med-chk-animate {
    opacity: 1;
    transform: translateX(0);
}

.med-chk-cards {
    margin-left: auto;
    display: grid;
    grid-template-columns: repeat(2, 320px);
    gap: 30px;
}

.med-chk-card {
    border-radius: 16px;
    padding: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.med-chk-card:nth-child(1) {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.med-chk-card:nth-child(2) {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.med-chk-card:nth-child(3) {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.med-chk-card:nth-child(4) {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.med-chk-card:nth-child(5) {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}

.med-chk-card:nth-child(6) {
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
}

.med-chk-card.med-chk-animate {
    opacity: 1;
    transform: translateY(0);
}

.med-chk-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.med-chk-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.med-chk-card:nth-child(1) .med-chk-card-icon {
    color: #2e7d32;
}

.med-chk-card:nth-child(2) .med-chk-card-icon {
    color: #e65100;
}

.med-chk-card:nth-child(3) .med-chk-card-icon {
    color: #1565c0;
}

.med-chk-card:nth-child(4) .med-chk-card-icon {
    color: #6a1b9a;
}

.med-chk-card:nth-child(5) .med-chk-card-icon {
    color: #c2185b;
}

.med-chk-card:nth-child(6) .med-chk-card-icon {
    color: #f57f17;
}

.med-chk-card-title {
    font-family: "Varela Round", sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 400;
}

.med-chk-card-text {
    font-size: 0.8rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.med-chk-decoration {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 180px;
    height: auto;
    opacity: 0;
    transition: opacity 0.8s ease 0.8s;
}

.med-chk-decoration.med-chk-animate {
    opacity: 1;
}

.med-chk-decoration img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .med-chk-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 40px;
    }

    .med-chk-title {
        font-size: 1.8rem;
    }

    .med-chk-decoration {
        width: 150px;
        bottom: 30px;
        left: 30px;
    }
}

@media (max-width: 900px) {
    .med-chk-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .med-chk-section {
        padding: 60px 20px;
    }

    .med-chk-container {
        padding: 50px 30px;
        border-radius: 20px;
        gap: 30px;
    }

    .med-chk-title {
        font-size: 1.6rem;
    }

    .med-chk-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .med-chk-card {
        padding: 30px;
    }

    .med-chk-decoration {
        width: 120px;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .med-chk-section {
        padding: 50px 16px;
    }

    .med-chk-container {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .med-chk-title {
        font-size: 1.4rem;
    }

    .med-chk-card {
        padding: 25px 20px;
    }

    .med-chk-card-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .med-chk-card-title {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .med-chk-decoration {
        width: 100px;
        bottom: 15px;
        left: 15px;
    }
}
.ntr-cta-section {
    width: 100%;
    padding: 0 20px;
    margin: 100px 0;
}

.ntr-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--primary-hover);
    border-radius: 24px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.ntr-cta-container::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.ntr-cta-container::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.ntr-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ntr-cta-title {
    font-family: "Varela Round", sans-serif;
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
}

.ntr-cta-description {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

.ntr-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.ntr-cta-btn {
    font-family: "Instrument Sans", sans-serif;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ntr-cta-btn-primary {
    background: var(--secondary);
    color: var(--text-light);
}

.ntr-cta-btn-primary:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
}

.ntr-cta-btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.ntr-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.ntr-cta-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.ntr-cta-btn-primary:hover i {
    transform: translateX(4px);
}

.ntr-cta-btn-secondary:hover i {
    transform: scale(1.1);
}

.ntr-cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.ntr-cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.ntr-cta-feature i {
    color: var(--text-light);
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .ntr-cta-container {
        padding: 70px 50px;
    }

    .ntr-cta-title {
        font-size: 2.4rem;
    }

    .ntr-cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .ntr-cta-section {
        margin: 80px 0;
    }

    .ntr-cta-container {
        padding: 60px 40px;
        border-radius: 20px;
    }

    .ntr-cta-title {
        font-size: 2rem;
    }

    .ntr-cta-description {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .ntr-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .ntr-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
    }

    .ntr-cta-features {
        gap: 25px;
        margin-top: 40px;
    }

    .ntr-cta-feature {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ntr-cta-section {
        padding: 0 15px;
        margin: 60px 0;
    }

    .ntr-cta-container {
        padding: 50px 30px;
        border-radius: 16px;
    }

    .ntr-cta-title {
        font-size: 1.7rem;
    }

    .ntr-cta-description {
        font-size: 0.9rem;
    }

    .ntr-cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

