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

html {
    scroll-behavior: smooth;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #2a2520;
    z-index: 1000;
    transition: width 0.1s ease;
}

body {
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    color: #2a2520;
    background: #f5f1e8;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    padding: 80px 0 60px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 400;
    color: #2a2520;
    letter-spacing: 0.5px;
}

.hero {
    padding: 100px 0 120px;
    border-bottom: 1px solid #2a2520;
}

h1 {
    font-size: 4rem;
    font-weight: 400;
    color: #2a2520;
    margin-bottom: 40px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    color: #2a2520;
    max-width: 500px;
    margin-bottom: 60px;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #2a2520;
    color: #f5f1e8;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
    font-weight: 400;
}

.cta-button:hover {
    opacity: 0.7;
}

.services {
    padding: 120px 0;
    border-top: 1px solid #2a2520;
}

.section-title {
    font-size: 0.85rem;
    font-weight: 400;
    color: #2a2520;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-list {
    border-top: 1px solid #2a2520;
}

.service-item {
    padding: 40px 0;
    border-bottom: 1px solid #d4c5a9;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    transition: padding-left 0.3s ease;
}

.service-item:hover {
    padding-left: 20px;
}

.service-item h3 {
    font-size: 1rem;
    font-weight: 400;
    color: #2a2520;
}

.service-item p {
    color: #5a4a3a;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
}

.about {
    padding: 120px 0;
    border-top: 1px solid #2a2520;
}

.about-content {
    max-width: 600px;
    color: #2a2520;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
}

.process {
    padding: 120px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 0.85rem;
    color: #8b7355;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #2a2520;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 0.9rem;
    color: #5a4a3a;
    line-height: 1.6;
}

.testimonial {
    padding: 120px 0;
    border-top: 1px solid #2a2520;
}

.testimonial-content {
    max-width: 700px;
}

.quote-text {
    font-size: 1.5rem;
    color: #2a2520;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.quote-author {
    font-size: 0.95rem;
    color: #5a4a3a;
}

.author-name {
    font-weight: 400;
    color: #2a2520;
}

footer {
    padding: 80px 0;
    border-top: 1px solid #2a2520;
}

.contact-info {
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.contact-info a {
    color: #2a2520;
    text-decoration: none;
    margin-right: 40px;
    border-bottom: 1px solid #2a2520;
    padding-bottom: 2px;
}

.contact-info a:hover {
    opacity: 0.5;
}

footer p {
    color: #8b7355;
    font-size: 0.85rem;
    font-weight: 400;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 30px;
}

.social-links a {
    color: #2a2520;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover {
    border-bottom: 1px solid #2a2520;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    header {
        padding: 40px 0 30px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .services, .about, .process, .testimonial {
        padding: 80px 0;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 0;
    }

    .service-item:hover {
        padding-left: 10px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .contact-info a {
        display: block;
        margin-bottom: 20px;
    }

    .social-links {
        flex-direction: column;
        gap: 15px;
    }
}

