:root { --primary-color: #2C5E4F; --accent-color: #7FB069; --bg-color: #F2F7F2; --text-color: #2D2D2D; --border-color: #DDE5DD; --font-main: 'Inter', system-ui, -apple-system, sans-serif; } body { background-color: var(--bg-color); color: var(--text-color); font-family: var(--font-main); line-height: 1.6; -webkit-font-smoothing: antialiased; } .navbar { background: rgba(242, 247, 242, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); padding: 1rem 0; } .navbar-brand { font-weight: 600; color: var(--primary-color) !important; letter-spacing: -0.5px; } .nav-link { color: var(--primary-color); font-weight: 500; } .nav-link:hover { color: var(--accent-color); } .hero-section { padding: 10rem 0 8rem; text-align: center; background: linear-gradient(180deg, var(--bg-color) 0%, #E8F0E8 100%); } .hero-section h1 { font-size: 3.5rem; font-weight: 700; color: var(--primary-color); margin-bottom: 1.5rem; letter-spacing: -1px; } .hero-section .lead { font-size: 1.25rem; color: #4A5D4A; max-width: 700px; margin: 0 auto 2.5rem; } .btn-primary { background-color: var(--accent-color); border: none; padding: 0.8rem 2.5rem; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 4px 14px rgba(127, 176, 105, 0.3); } .btn-primary:hover { background-color: #6C9A57; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(127, 176, 105, 0.4); } .section-padding { padding: 8rem 0; } .bg-light-green { background-color: #E8F0E8 !important; } .card { border: 1px solid var(--border-color); border-radius: 20px; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); background: #fff; } .card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(44, 94, 79, 0.08); border-color: var(--accent-color); } .card h4 { color: var(--primary-color); } .form-control, .form-select { border-radius: 12px; padding: 0.8rem 1.2rem; border: 2px solid var(--border-color); background-color: #fff; } .form-control:focus, .form-select:focus { border-color: var(--accent-color); box-shadow: 0 0 0 4px rgba(127, 176, 105, 0.1); outline: none; } .bg-white { background-color: #fff !important; } footer { border-top: 1px solid var(--border-color); padding: 5rem 0; margin-top: 4rem; background-color: #E8F0E8; color: var(--primary-color); } footer .text-muted { color: #5A735A !important; } .toast-container { z-index: 1100; } /* Custom green accent for selection */ ::selection { background: var(--accent-color); color: #fff; }