* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #ffffff 0%, #f6f9f4 50%, #f0f5ed 100%);
    min-height: 100vh;
    overflow-y: hidden;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.container h2 {
    color: #2d5016;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.container > p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Form Elements */
.form-label {
    color: #2d5016;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    display: block;
}

.mb-3 {
    margin-bottom: 0.6rem !important;
}

.form-control,
.form-select {
    border: 1px solid #e0ead6;
    border-radius: 6px;
    padding: 0.4rem 0.65rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: #4a7c2c;
    box-shadow: 0 0 0 0.25rem rgba(74, 124, 44, 0.15);
    outline: none;
}

textarea.form-control {
    resize: none;
    min-height: 70px;
    padding: 0.4rem 0.65rem;
}

/* Honeypot field - hidden */
input[name="_gotcha"] {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

/* Buttons */
.btn {
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-dark {
    background: #ffffff ;
    color: #4a7c2c ;
    border: 2px solid #4a7c2c ;
}

.btn-dark:hover:not(:disabled) {
    background: #4a7c2c;
    color: #ffffff;
    border-color: #4a7c2c;
}

.btn-dark:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-outline-secondary {
    background: transparent;
    color: #2d5016 ;
    border: 2px solid #e0ead6 ;
}

.btn-outline-secondary:hover {
    background-color: #4a7c2c;
    color: #ffffff;
    border-color: #4a7c2c;
}

.btn-link {
    background: transparent;
    color: #2d5016;
    padding: 8px 26px;
    border: none;
    position: relative;
}

.btn-link::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: rgba(74,124,44,0.12);
    transition: transform 0.22s ease, opacity 0.22s ease;
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0;
}

.btn-link:hover::after,
.btn-link:focus::after {
    transform: scaleX(1);
    opacity: 1;
}

.btn-link:hover {
    color: #4a7c2c;
}

/* Feedback Messages */
#contact-feedback {
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

#contact-feedback.text-success {
    background: #e8f3e1;
    color: #2d5016;
    border: 1px solid #d0e5c4;
}

#contact-feedback.text-danger {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        margin: 0.25rem auto;
    }

    .container h2 {
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .d-flex.gap-2 {
        flex-direction: column;
        gap: 0 !important;
    }
}