/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family-base);
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
}

h1 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-sm);
}

h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
}

/* Layout */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-size-2xl);
    color: var(--primary);
}

/* Sections */
section {
    padding: var(--spacing-2xl) var(--spacing-lg);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: linear-gradient(rgba(12, 60, 96, 0.9), rgba(12, 60, 96, 0.8)), url('/images/hero-bg.jpg') center/cover no-repeat;
    color: white;
}

.hero h1 {
    color: white;
    max-width: 800px;
}

.hero p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
}

/* Benefits Section */
.benefits {
    background-color: white;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* Features Section */
.features {
    background-color: var(--light-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* Experts Section */
.experts {
    background-color: white;
    text-align: center;
}

.experts p {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: var(--font-size-lg);
}

.expert-credentials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing {
    background-color: var(--light-blue);
    text-align: center;
}

.pricing p {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: var(--font-size-lg);
}

/* Customization Section */
.customization {
    background-color: white;
}

.customization-container {
    display: flex;
    flex-wrap: wrap;
    max-width: var(--container-max-width);
    margin: 0 auto;
    align-items: center;
    gap: var(--spacing-xl);
}

.customization-text {
    flex: 1 1 500px;
}

.customization-image {
    flex: 1 1 400px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.customization-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.contact h2 {
    color: white;
    margin-bottom: var(--spacing-lg);
}