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

body {
    font-family: 'Trebuchet MS', 'Lucida Sans', Arial, sans-serif;
    color: #f5f5dc;
    background-color: #1a1a1a;
    line-height: 1.6;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(20, 50, 30, 0.5), rgba(10, 20, 15, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    color: #f5f5dc;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.subtitle {
    font-size: 1.5rem;
    color: #d4c5a0;
    font-style: italic;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Introduction Section */
.intro {
    padding: 4rem 0;
    background-color: #1a2e1a;
}

.intro p {
    font-size: 1.25rem;
    text-align: center;
    color: #d4d4d4;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: #0f1f0f;
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #f5f5dc;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.1rem;
    color: #d4d4d4;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

/* Tiles Section */
.tiles {
    padding: 4rem 0;
    background-color: #0f1f0f;
}

.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tile {
    background-color: #1a3a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2d5a2d;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.tile-link {
    display: inline-block;
    color: #8fbc8f;
    padding: 0 1.5rem 1.5rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.tile-link:hover {
    color: #b4e4b4;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.tile-image {
    width: 100%;
    height: 200px;
    background-color: #2d5a2d;
    overflow: hidden;
}

.tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile h3 {
    font-size: 1.5rem;
    color: #f5f5dc;
    padding: 1.5rem 1.5rem 0.5rem;
}

.tile p {
    color: #c4c4b4;
    padding: 0 1.5rem 1rem;
    font-size: 1rem;
}



/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: #1a2e1a;
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #f5f5dc;
    margin-bottom: 2rem;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: start;
}

.contact-info {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.contact-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2d5a2d;
    margin-bottom: 1rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #f5f5dc;
    margin-bottom: 1rem;
}

.contact-detail {
    color: #d4d4d4;
    margin: 0.5rem 0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-detail a {
    color: #8fbc8f;
    text-decoration: none;
}

.contact-detail a:hover {
    color: #b4e4b4;
    text-decoration: underline;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: #d4d4d4;
    line-height: 1.8;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    min-width: 250px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #0f1f0f;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #2d5a2d;
}

.credential img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.credential p {
    color: #d4d4d4;
    font-size: 1.1rem;
}

.credential-text {
    background-color: #0f1f0f;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #2d5a2d;
    text-align: center;
}

.credential-text p {
    color: #d4d4d4;
    font-size: 1.1rem;
}

/* Content Page */
.content-page {
    padding: 4rem 0;
    background-color: #1a2e1a;
}

.content-page h2 {
    font-size: 2.5rem;
    color: #f5f5dc;
    margin-bottom: 2rem;
    text-align: center;
}

.content-page p {
    font-size: 1.1rem;
    color: #d4d4d4;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
}

.back-link a {
    color: #8fbc8f;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #b4e4b4;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #0a0f0a;
    padding: 2rem 0;
    text-align: center;
    color: #8fbc8f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .intro p {
        font-size: 1.1rem;
    }
    
    .tile-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}