/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4a90a4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('assets/home_page_1.png') center center/cover no-repeat;
    overflow: hidden;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-text {
    color: white;
}

.hero-button-custom {
    position: absolute;
    left: -550px;
    bottom: -230px;
    z-index: 999;
    width: auto;
    height: auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #ffffff;
    color: #3b6d03;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #92c61c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 144, 164, 0.3);
}

.hero-image {
    text-align: center;
}

.hero-product {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.products-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
        radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at 10% 30%, rgba(255, 255, 255, 0.25) 2.5px, transparent 2.5px),
        radial-gradient(circle at 70% 90%, rgba(255, 255, 255, 0.35) 2px, transparent 2px),
        radial-gradient(circle at 30% 10%, rgba(255, 255, 255, 0.2) 1.8px, transparent 1.8px),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.3) 2.2px, transparent 2.2px);
    background-size: 200px 200px, 150px 150px, 300px 300px, 180px 180px, 250px 250px, 220px 220px, 160px 160px, 280px 280px;
    animation: bubbleFloat 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes bubbleFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px); 
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-10px) translateX(5px); 
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-20px) translateX(-5px); 
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-15px) translateX(8px); 
        opacity: 0.6;
    }
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
    z-index: 2;
}

.recipes-section .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.recipes-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 3rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.recipe-category {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.category-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid #d4af37;
    display: inline-block;
    padding-bottom: 0.5rem;
    width: 100%;
}

.recipe-type {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(45deg, #D4AF37, #D4AF37);
    color: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.recipe-instructions {
    font-size: 0.9rem;
    color: #666;
    margin: 0.8rem 0;
    line-height: 1.4;
    font-style: italic;
}

.recipes-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.footer-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-note {
    font-size: 1rem;
    color: #d4af37;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    background: linear-gradient(45deg, #f1f2f6, #ddd);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.product-size {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-nutrition {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.nutrition-item {
    background: #616161;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    min-width: 80px;
}

.product-status {
    background: #D4AF37;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.product-btn {
    background: transparent;
    color: #616161;
    border: 2px solid #616161;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #616161;
    color: white;
}

/* Recipes Section */
.recipes-section {
    padding: 6rem 0;
    background: url('assets/seb3.jpg') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.recipes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.recipe-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.recipe-image {
    height: 200px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-image::before {
    content: '🍹';
    font-size: 4rem;
    opacity: 0.6;
    position: absolute;
    z-index: 1;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-content {
    padding: 1.5rem;
}

.recipe-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.recipe-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.recipe-link {
    color: #1a472a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.recipe-link:hover {
    color: #d4af37;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: url('assets/bubbles-top-bg.jpg') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}


.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text-box .section-title {
    color: #333;
    text-shadow: none;
    margin-bottom: 1.5rem;
}

.about-text-box .about-description {
    color: #555;
    text-shadow: none;
}

.about-text-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 2rem auto;
}

.about-text {
    padding: 0;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #d4af37;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding-right: 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .recipes-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.recipe-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover effects for interactive elements */
.cta-button,
.product-btn,
.recipe-link {
    position: relative;
    overflow: hidden;
}

.cta-button::before,
.product-btn::before {
    content: '';
    position: absolute;
    top: 200%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before,
.product-btn:hover::before {
    left: 100%;
}

/* Spanning Logo Section - Schweppes Style */
.spanning-logo-section {
    position: relative;
    background: #ffffff;
    padding: 0;
    margin: 0;
    z-index: 10;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 100%;
}

.spanning-logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 3;
}

.spanning-logo:hover {
    transform: scale(1.02);
}

/* Footer with seamless transition */
.footer {
    position: relative;
    z-index: 1;
    margin-top: 0;
    background: #2c3e50;
    border-top: none;
}

/* Responsive Design for Spanning Logo */
@media (max-width: 768px) {
    .spanning-logo-section {
        height: 80px;
    }
    
    .spanning-logo {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .spanning-logo-section {
        height: 60px;
    }
    
    .spanning-logo {
        height: 40px;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.privacy-title {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.effective-date {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding: 15px;
    background: #ecf0f1;
    border-radius: 8px;
}

.privacy-intro {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #3498db;
}

.privacy-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    font-weight: 600;
}

.privacy-section p {
    margin-bottom: 15px;
    color: #34495e;
    font-size: 1rem;
}

.privacy-list {
    margin: 20px 0;
    padding-left: 0;
}

.privacy-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #34495e;
    line-height: 1.6;
}

.privacy-list li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-info strong {
    color: #3498db;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
}

/* Terms of Service Page Styles */
.terms-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.terms-title {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.terms-intro {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
}

.terms-warning {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.terms-section-content {
    margin-bottom: 40px;
}

.terms-section-content h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
    font-weight: 600;
}

.terms-section-content p {
    margin-bottom: 15px;
    color: #34495e;
    font-size: 1rem;
}

.terms-list {
    margin: 20px 0;
    padding-left: 0;
}

.terms-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #34495e;
    line-height: 1.6;
}

.terms-list li::before {
    content: "•";
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.terms-footer {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
    border-top: 3px solid #e74c3c;
}

.terms-footer p {
    margin-bottom: 10px;
    color: #2c3e50;
}

.terms-footer strong {
    color: #e74c3c;
}

/* Responsive Design for Terms of Service */
@media (max-width: 768px) {
    .terms-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .terms-section-content h2 {
        font-size: 1.3rem;
    }
}

/* Universal Checkbox Styles - Applied to All Forms */
.checkbox-group {
    margin: 20px 0 !important;
}

.checkbox-label {
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    font-size: 14px !important;
    color: #333 !important;
    line-height: 1.4 !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    display: none !important;
    opacity: 0 !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
}

.checkmark {
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #ddd !important;
    border-radius: 4px !important;
    margin-right: 12px !important;
    position: relative !important;
    background: white !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #e74c3c !important;
    border-color: #e74c3c !important;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '' !important;
    position: absolute !important;
    left: 6px !important;
    top: 2px !important;
    width: 6px !important;
    height: 10px !important;
    border: solid white !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg) !important;
}

/* Inline checkbox styling for single line display */
.checkbox-label.inline {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
}

.checkbox-label.inline .checkmark {
    margin-right: 8px !important;
}

.checkbox-label a {
    color: #1a472a !important;
    text-decoration: none !important;
}

.checkbox-label a:hover {
    text-decoration: underline !important;
}

/* Contact Form Specific Checkbox Overrides */
.contact-form .checkbox-label {
    color: #fff !important;
}

.contact-form .checkmark {
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.contact-form .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #fff !important;
    border-color: #fff !important;
}

.contact-form .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    border: solid #667eea !important;
}

  .contact-hero{padding: 50px 0; margin: 6rem 0;}