/* 
 * Global Styles
 * TRX vs Kettlebells Landing Page
 * clevarioneth.shop
 */

:root {
    /* Main Colors */
    --primary-color: #4a90e2;
    --secondary-color: #3fd0c9;
    --accent-color: #ff6b6b;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #28a745;
    
    /* Fonts */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-align: center;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--gray-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.primary-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.primary-button:hover {
    background-color: #3a80d2;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    text-align: center;
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo {
    height: 40px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover:after {
    width: 100%;
}

.cta-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background-color: #3a80d2;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button:after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f7fa 0%, #bbdefb 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    line-height: 1.2;
}

.hero-content h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.vs-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.trx-side, .kettlebell-side {
    height: 400px;
    width: 250px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
}

.trx-side:hover, .kettlebell-side:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.trx-side img, .kettlebell-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vs-badge {
    position: absolute;
    z-index: 2;
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
}

.benefit-card h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--gray-color);
}

/* Comparison Section */
.comparison {
    position: relative;
    background-color: #eef2ff;
    padding: 0;
}

.comparison-wave-top, .comparison-wave-bottom {
    position: absolute;
    width: 100%;
    z-index: 1;
}

.comparison-wave-top {
    top: 0;
}

.comparison-wave-bottom {
    bottom: 0;
}

.comparison-container {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.comparison-table-container {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: var(--spacing-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 1.5rem 1rem;
}

.comparison-feature {
    text-align: left;
    padding-left: 2rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background-color: rgba(74, 144, 226, 0.05);
}

.comparison-trx, .comparison-kettlebell {
    text-align: center;
    padding: 0 1rem;
}

/* Programs Section */
.programs {
    padding: var(--spacing-xl) 0;
}

.programs-tabs {
    margin-top: var(--spacing-lg);
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active, .tab-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.tabs-content {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.program-card.featured {
    border: 2px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 1;
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-content {
    padding: 2rem;
}

.program-content h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.program-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.program-features {
    margin-bottom: 1.5rem;
}

.program-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.program-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.program-price {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.program-button {
    display: inline-block;
    width: 100%;
    padding: 0.8rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.program-button:hover {
    background-color: #3a80d2;
    color: white;
}

.program-button.highlight {
    background-color: var(--accent-color);
}

.program-button.highlight:hover {
    background-color: #ff5252;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    background-color: #f8f8f8;
    padding: 0;
}

.testimonials-wave-top {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.testimonials-container {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    position: relative;
    margin-top: var(--spacing-lg);
    padding: 2rem 0;
}

.testimonial-slide {
    padding: 1rem;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex-grow: 1;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.star {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--dark-color);
}

.author-program {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-prev, .testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: #3a80d2;
    transform: scale(1.1);
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.pricing-header h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.amount {
    font-family: var(--heading-font);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--gray-color);
    margin-top: 1rem;
}

.pricing-description {
    color: var(--gray-color);
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.pricing-features ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.pricing-footer {
    padding: 0 2rem 2rem;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 1rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background-color: #3a80d2;
    color: white;
}

.pricing-button.highlight {
    background-color: var(--accent-color);
}

.pricing-button.highlight:hover {
    background-color: #ff5252;
}

/* Contact Section */
.contact {
    position: relative;
    background-color: #f5f9ff;
    padding: 0;
}

.contact-wave-top {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.contact-container {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius-md);
    font-family: var(--body-font);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.submit-button {
    padding: 1rem 0;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #3a80d2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon img {
    width: 24px;
    height: 24px;
}

.contact-detail h3 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-detail p {
    color: var(--gray-color);
}

.google-map {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
    height: 250px;
}

/* Newsletter Section */
.newsletter {
    padding: var(--spacing-lg) 0;
    background-color: var(--primary-color);
    color: white;
}

.newsletter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    flex: 1;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: var(--border-radius-md);
    font-family: var(--body-font);
}

.newsletter-input-group input:focus {
    outline: none;
}

.newsletter-button {
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background-color: #ff5252;
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.newsletter-privacy a {
    color: white;
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-nav h3,
.footer-programs h3,
.footer-legal h3 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-nav ul li,
.footer-programs ul li,
.footer-legal ul li {
    margin-bottom: 0.8rem;
}

.footer-nav ul li a,
.footer-programs ul li a,
.footer-legal ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-programs ul li a:hover,
.footer-legal ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    animation: slideUp 0.5s ease forwards;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background-color: #3a80d2;
}

.cookie-settings {
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-settings:hover {
    background-color: var(--primary-color);
    color: white;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .trx-side, .kettlebell-side {
        height: 350px;
        width: 220px;
    }
    
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-table-container {
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background-color: white;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 5;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .vs-container {
        margin-top: 2rem;
    }
    
    .trx-side, .kettlebell-side {
        height: 300px;
        width: 180px;
    }
    
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
    }
    
    .benefit-card, .program-card, .pricing-card {
        transform: none !important;
    }
    
    .trx-side, .kettlebell-side {
        height: 250px;
        width: 150px;
    }
    
    .vs-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .comparison-header, .comparison-row {
        grid-template-columns: 100px 1fr 1fr;
    }
    
    .comparison-feature {
        padding-left: 1rem;
        font-size: 0.9rem;
    }
    
    .tabs-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-button {
        width: 100%;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
    }
    
    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-accept, .cookie-settings {
        width: 100%;
    }
}