/* Core Styles */
:root {
    --primary: #0056b3;
    --primary-dark: #003d7a;
    --text: #333;
    --light: #d3d4d6;
    --white: #f1e7e7;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

.highlight {
    font-weight: 600;
    color: var(--primary);
}

.small {
    font-size: 0.9rem;
}

/* Header */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--primary);
}

.logo p {
    font-size: 0.9rem;
    color: #666;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.large {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.x-large {
    padding: 15px 40px;
    font-size: 1.3rem;
    margin: 15px 0;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: var(--light);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    max-width: 600px;
}

.hero-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Services */
.services {
    padding: 60px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service ul {
    margin-left: 20px;
}

.service li {
    margin-bottom: 8px;
    position: relative;
}

.service li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
    background: var(--primary);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
}

/* Footer */
.footer {
    padding: 30px 0;
    background: var(--text);
    color: var(--white);
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        align-items: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}