/* Base Styles */
:root {
    --primary-color: #3D7DCA; /* Pokemon blue */
    --secondary-color: #FFCB05; /* Pokemon yellow */
    --accent-color: #FF5350; /* Pokemon red */
    --dark-color: #003A70; /* Darker blue */
    --light-color: #F8F9FA;
    --text-color: #333333;
    --success-color: #28a745;
    --border-radius: 8px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.8em;
    line-height: 1.2;
    color: var(--dark-color);
}

p {
    margin-bottom: 1.2em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-color);
}

ul {
    list-style-position: inside;
    margin-bottom: 1.2em;
}

li {
    margin-bottom: 0.5em;
}

section {
    padding: 60px 0;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: var(--box-shadow);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.2em;
    color: white;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('images/pokemon-cards-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.cta-button:hover {
    background-color: white;
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Banner Section */
.banner {
    padding: 20px 0;
    background-color: white;
    text-align: center;
}

.banner .container {
    padding: 0;
}

.debt-banner {
    width: 75%;
    max-width: 75%;
    height: auto;
    display: block;
    box-shadow: var(--box-shadow);
    margin: 0 auto;
}

.second-banner {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: var(--box-shadow);
}

/* Debt Dangers Section */
.debt-dangers {
    background-color: white;
    text-align: center;
}

.debt-dangers h2 {
    margin-bottom: 40px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.info-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 30px 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.info-card i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Empathy Section */
.empathy {
    background-color: var(--light-color);
}

.empathy ul {
    list-style-type: none;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.empathy li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    padding-left: 30px;
    position: relative;
}

.empathy li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 10px;
}

.empathy li:last-child {
    border-bottom: none;
}

/* Buying Section */
.buying-section {
    background-color: white;
}

.buying-list {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.buying-list li {
    display: flex;
    align-items: center;
    background-color: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.buying-list i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--light-color);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 30px;
}

form {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(61, 125, 202, 0.2);
}

.checkbox-group, .radio-group {
    margin-bottom: 25px;
}

.checkbox-options, .radio-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.checkbox-option, .radio-option {
    display: flex;
    align-items: center;
}

.checkbox-option label,
.radio-option label {
    margin: 0 0 0 8px;
    font-weight: normal;
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    font-weight: 600;
}

.submit-button:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .info-card {
        min-width: 100%;
    }
    
    .checkbox-options, .radio-options {
        grid-template-columns: 1fr;
    }
}
