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

:root {
    --highlight-color: #B57136;
    --bg-color: #ffffff;
    --text-color: #333333;
    --font-family: 'Arimo', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container-main {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(45, 45, 45, 0.7) 50%, rgba(26, 26, 26, 0.7) 100%), url('hero image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(181, 113, 54, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(181, 113, 54, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.content {
    text-align: center;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-family: var(--font-family);
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-family: var(--font-family);
    font-size: 28px;
    color: var(--highlight-color);
    margin-bottom: 25px;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.description {
    font-family: var(--font-family);
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.contact-info {
    margin-bottom: 50px;
    opacity: 0.9;
}

.contact-info p {
    font-family: var(--font-family);
    font-size: 14px;
    color: #e0e0e0;
    margin: 5px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.contact-info p strong {
    color: var(--highlight-color);
    font-weight: 600;
}

/* Info Section */
.info-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.info-section h2 {
    font-family: var(--font-family);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.info-text {
    font-family: var(--font-family);
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.info-item {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item h3 {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 15px;
}

.info-item p {
    font-family: var(--font-family);
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .tagline {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .description {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .contact-info p {
        font-size: 13px;
    }

    .info-section {
        padding: 60px 20px;
    }

    .info-section h2 {
        font-size: 32px;
    }

    .info-text {
        font-size: 16px;
    }

    .info-grid {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .tagline {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .description {
        font-size: 14px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .contact-info {
        margin-bottom: 40px;
    }

    .contact-info p {
        font-size: 12px;
    }

    .info-section {
        padding: 40px 15px;
    }

    .info-section h2 {
        font-size: 28px;
    }

    .info-text {
        font-size: 15px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-item {
        padding: 25px;
    }
}
