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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8faf9 0%, #e8f4f0 100%);
    color: #1a1a1a;
    line-height: 1.6;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
}

.hero-gradient {
    background: linear-gradient(135deg, #0d7c66 0%, #0f9a7e 50%, #12b896 100%);
}

.accent-gradient {
    background: linear-gradient(135deg, #12b896 0%, #0d7c66 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 124, 102, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #12b896 0%, #0d7c66 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 124, 102, 0.3);
}

.feature-icon {
    background: linear-gradient(135deg, #e8f4f0 0%, #d4ece5 100%);
    transition: all 0.3s ease;
}

.feature-icon:hover {
    background: linear-gradient(135deg, #12b896 0%, #0d7c66 100%);
    color: white;
}

.testimonial-card {
    background: white;
    border-left: 4px solid #12b896;
}

input,
textarea {
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #12b896;
    box-shadow: 0 0 0 3px rgba(18, 184, 150, 0.1);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #12b896;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.section-number {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 700;
    color: rgba(18, 184, 150, 0.08);
    position: absolute;
    top: -40px;
    left: 20px;
    z-index: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.warning-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe9a6 100%);
    border-left: 5px solid #ffa726;
}

