:root {
    --eco-green: #008000;
    --eco-dark: #3C8C3C;
}

body {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.navbar {
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 1rem;
}

.form-select {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 1rem;
    background-color: white;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.btn-primary {
    background-color: var(--eco-green);
    border-color: var(--eco-green);
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 6px;
}

.btn-primary:hover {
    background-color: var(--eco-dark);
    border-color: var(--eco-dark);
}

.payment-methods {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.payment-icon {
    height: 32px;
    object-fit: contain;
}

.form-control:focus {
    border-color: var(--eco-green);
    box-shadow: 0 0 0 0.2rem rgba(69, 179, 69, 0.25);
}

.footer {
    padding: 20px 0;
    color: #6c757d;
}

.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
}

.order-summary {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.order-summary h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.order-summary hr {
    border-color: #dee2e6;
    margin: 1rem 0;
}

small.text-muted {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.5;
}

.text-decoration-none {
    color: #45B345;
}

.text-decoration-none:hover {
    color: #3C8C3C;
}

/* Match the screenshot styling */
h2.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.card-body p.text-center {
    color: #666;
    margin-bottom: 2rem;
}

/* PDF link styling */
.pdf-link {
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pdf-link:hover {
    color: #45B345;
    text-decoration: underline;
}

/* Mobile-specific styling - removed conflicting padding to fix content positioning */