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

/* Variables */
:root {
    --primary: #1a1a1a;
    --secondary: #4a4a4a;
    --accent: #2d5a8c;
    --light: #f8f9fa;
    --white: #ffffff;
}

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--primary);
    background: var(--white);
}

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

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--primary);
}

h1 strong {
    font-weight: 600;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--secondary);
}

/* Header */
header {
    padding: 2rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.02em;
    text-decoration: none;
}

/* Main Content */
main.content-page {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

main.content-page a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
}

main.content-page a:hover {
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: var(--white);
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.cta-button:hover {
    background: var(--white);
    color: var(--primary);
}

.cta-button-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.cta-button-secondary:hover {
    background: transparent;
    color: var(--white);
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

footer p {
    color: var(--secondary);
    font-size: 0.9rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info .mail-icon {
    font-size: 1.3rem;
    vertical-align: middle;
}



/* Hero Section */
.hero {
    padding: 6rem 0 8rem;
    text-align: center;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Value Proposition */
.value-prop {
    padding: 6rem 0;
}

.value-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.value-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.value-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.value-item {
    padding: 1.5rem;
    border-left: 2px solid var(--primary);
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.value-item p {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-list {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 4rem 0 5rem;
    }
}
/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light);
}

.about-content {
    text-align: center;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 2px;
}

.about-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--primary);
}

.about-item p {
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-footer {
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 400;
    font-style: italic;
    margin-top: 2rem;
}
