/*
Theme Name: Tekemon Conversion Pro
Theme URI: https://tekemon.com
Author: Conversion Pro Labs
Author URI: https://conversionprolabs.com
Description: High-converting WordPress theme with integrated PayPal checkout for Tekemon's Zone Theory of Flight
Version: 2.0.0
License: GPL v2 or later
Text Domain: tekemon-conversion
Tags: conversion-optimized, paypal-integrated, responsive, landing-page, high-converting
*/

/* CSS Variables for Easy Customization */
:root {
    --primary: #0066ff;
    --primary-dark: #0047ab;
    --secondary: #ff6b35;
    --accent: #ffd700;
    --dark: #0a0a0a;
    --light: #ffffff;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --success: #10b981;
    --error: #ef4444;
    --gradient: linear-gradient(135deg, #0066ff 0%, #0047ab 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-success: 0 10px 30px rgba(16, 185, 129, 0.3);
    --border-radius: 15px;
    --border-radius-lg: 25px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ... rest of the CSS content ... */