@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f8f9e6; /* Soft yellow background */
}
/* Green sections with yellow accents */
section {
    background-color: #e8f5e9; /* Light green */
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #ffd600; /* Yellow accent */
}
/* Heading styles with green color */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 0.5rem;
}

h1::after, h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}
p, li {
    color: var(--text);
}

/* Card backgrounds */
.bg-white {
    background-color: #e8f5e9 !important; /* Light green */
    border: 1px solid var(--secondary);
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button hover effects */
.btn-hover {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section spacing */
.section {
    padding: 5rem 0;
}

/* Responsive typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    h2 {
        font-size: 1.75rem;
    }
}
/* Form input styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--secondary);
    border-color: var(--primary);
}

input, textarea, select {
    background-color: #f1f8e9 !important;
    border: 1px solid var(--primary-light) !important;
}
/* Quote form improvements */
#quote .border-dashed:hover {
    border-color: var(--primary);
}

#quote button[type="submit"] {
    transition: all 0.3s ease;
}

#quote button[type="submit"]:hover {
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}
/* New color scheme */
:root {
    --primary: #2e7d32; /* Darker forest green */
    --primary-light: #81c784;
    --primary-dark: #1b5e20;
    --secondary: #fdd835; /* Vibrant yellow */
    --accent: #ffab00; /* Darker yellow */
    --light: #f8f9e6; /* Creamy yellow */
    --dark: #1a1a1a;
    --text: #1a1a1a;
    --text-light: #424242;
}
/* Image hover effects */
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform .5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}