/* style.css */

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #1f2937;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation */
nav ul {
    list-style: none;
    margin: 0;
    padding: 10px;
    background-color: #333;
    display: flex;
    justify-content: center;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/* SEO Content Section */
.seo-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.seo-content h1,
.seo-content h2 {
    color: #333;
    margin-bottom: 15px;
}
.seo-content h1 {
    font-size: 2em;
}
.seo-content h2 {
    margin-top: 20px;
}
.seo-content p,
.seo-content ol {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.seo-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Rebate Form */
.rebate-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.rebate-form h1 {
    text-align: center;
    color: #333;
}
.rebate-form p {
    text-align: center;
    color: #666;
}
.rebate-form label {
    display: block;
    margin-top: 15px;
    color: #333;
}
.rebate-form input[type="text"],
.rebate-form input[type="email"],
.rebate-form input[type="date"],
.rebate-form select,
.rebate-form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.rebate-form button {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background-color: #28a745;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.rebate-form button:hover {
    background-color: #218838;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    margin-top: 40px;
}
footer a {
    color: #fff;
    text-decoration: underline;
}

/* Cookie Disclaimer */
.cookie-disclaimer {
    position: fixed;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    width: 100%;
    padding: 10px;
    text-align: center;
}
.cookie-disclaimer a {
    color: #fff;
    text-decoration: underline;
}
.cookie-disclaimer button {
    margin-left: 10px;
    padding: 5px 10px;
    border: none;
    background-color: #28a745;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
}

/* Modal for Age Verification */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    text-align: center;
    border-radius: 10px;
}
.modal-content button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #28a745;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.modal-content button:hover {
    background-color: #218838;
}

/* Two-Column Layout */
.two-column {
    display: flex;
    align-items: stretch; /* Ensures both columns are the same height */
    gap: 20px;
    margin: 20px 0;
}
.left-column {
    flex: 2;
    text-align: left;
    background-color: #f0f0f0; /* Consistent background for left column */
    padding: 20px;
    box-sizing: border-box;
}
.right-column {
    flex: 1;
    text-align: left;
    background-color: #f0f0f0; /* Consistent background for right column */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
}
.right-column-inner {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centers the content */
    width: 100%;
}
.rebate-image {
    max-width: 100%; /* Shrinks the image to the column's size if needed */
    height: auto;
    display: block;
    margin: 0 0 20px 0; /* Bottom margin for spacing */
}

/* Side Form Card Styling */
.side-form .form-card {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.side-form h2 {
    margin-top: 0;
}
.side-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}
.side-form input[type="email"],
.side-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 2px;
}
.side-form .form-button {
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.side-form .form-button:hover {
    background-color: #005a87;
}

/* Modern Enhancements */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-hover {
    transition: all 0.3s ease;
    transform: translateY(0);
}

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

.modern-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.modern-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(99, 102, 241, 0.2);
}

.stats-counter {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    text-decoration: none;
    display: inline-block;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-spacing {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 60px 0;
    }
}
