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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fffacd;
}

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

/* Navigation */
.navigation {
    background: rgba(118, 79, 43, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navigation .container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-link {
    color: #fffacd;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-link:hover {
    background-color: rgba(255, 250, 205, 0.2);
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: rgba(255, 250, 205, 0.3);
}

/* Hero Section */
.hero {
    background:  url('hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fffacd;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fffacd;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Content Section */
.content {
    padding: 80px 0;
    background-color: #fffacd;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #764f2b;
    margin-bottom: 50px;
    border-bottom: 4px solid #764f2b;
    padding-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.legacy-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(118, 79, 43, 0.15);
    margin-bottom: 40px;
    border-left: 6px solid #764f2b;
}

.legacy-section h3 {
    color: #764f2b;
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
}

.legacy-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.findings-list {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(118, 79, 43, 0.15);
    margin-bottom: 40px;
}

.findings-list ul {
    list-style: none;
    padding: 0;
}

.findings-list li {
    background: #f9f9f9;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #764f2b;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.findings-list li:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.closing-note {
    background: #764f2b;
    color: #fffacd;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(118, 79, 43, 0.2);
}

.closing-note p {
    font-size: 1.3rem;
    font-style: italic;
    margin: 0;
}

/* Title Image */
.title-image {
    text-align: center;
    margin: 40px 0;
}

.star-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(118, 79, 43, 0.2);
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 8px 25px rgba(255, 250, 205, 0.2);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #764f2b;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #764f2b;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #764f2b;
    color: #fffacd;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #5a3a21;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: #fffacd;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fffacd;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #764f2b;
    padding-bottom: 10px;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

.footer-bottom a {
    color: #fffacd;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Contact Section */
.contact {
    background-color: #764f2b;
    color: #fffacd;
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fffacd;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-info {
    background: rgba(255, 250, 205, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid rgba(255, 250, 205, 0.2);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Clients Section */
.clients-section {
    background: rgba(255, 250, 205, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid rgba(255, 250, 205, 0.2);
    margin-top: 30px;
    text-align: center;
}

.clients-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fffacd;
}

.clients-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.client-link {
    color: #fffacd;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid rgba(255, 250, 205, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 200px;
}

.client-link:hover {
    background-color: rgba(255, 250, 205, 0.2);
    border-color: #fffacd;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .legacy-section {
        padding: 25px;
        margin-bottom: 30px;
    }

    .legacy-section h3 {
        font-size: 1.8rem;
    }

    .legacy-section p {
        font-size: 1.1rem;
        text-align: left;
    }

    .findings-list {
        padding: 25px;
    }

    .findings-list li {
        padding: 15px;
        font-size: 1rem;
    }

    .closing-note {
        padding: 25px;
    }

    .closing-note p {
        font-size: 1.1rem;
    }

    .star-image {
        border-radius: 10px;
    }

    .contact-form-container {
        padding: 25px;
        margin: 25px 0;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 1rem;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 1.1rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 1.2rem;
    }

    .contact h2 {
        font-size: 2rem;
    }
}