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

body {
    font-family: 'Georgia', serif;
    background-color: #2c1810;
    color: #f4e6d7;
    line-height: 1.6;
}

/* Site Header */
.site-header {
    width: 100%;
    background: linear-gradient(135deg, #1a0f08, #2c1810);
    border-bottom: 2px solid #8b4513;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo-banner-link {
    display: block;
    width: 100%;
    transition: opacity 0.3s ease;
}

.logo-banner-link:hover {
    opacity: 0.9;
}

.logo-banner {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: transparent;
}

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

/* Hero Banner Section */
.hero-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2c1810;
    padding: 20px;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 8px;
}

/* Features Grid Section */
.features-grid-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0f08, #2c1810);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #2c1810;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.feature-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.feature-item:hover img {
    transform: scale(1.05);
}

/* Fullscreen Overlay */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fullscreen-overlay.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-overlay img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

/* Section Styling */
.section {
    padding: 4rem 0;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: linear-gradient(135deg, #3d2817, #2c1810);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(255, 215, 0, 0.4);
}

.team-card h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.team-card .role {
    font-size: 1.2rem;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card .description {
    font-size: 1rem;
    color: #f4e6d7;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.team-link {
    display: inline-block;
    color: #ffd700;
    text-decoration: underline;
    padding: 10px 20px;
    border: 2px solid #ffd700;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.team-link:hover {
    background: #ffd700;
    color: #2c1810;
    text-decoration: none;
}

/* Privacy Policy Styles */
.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.privacy-header h1 {
    font-size: 3rem;
    color: #ffd700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    margin-bottom: 0.5rem;
}

.privacy-header .company {
    font-size: 1.2rem;
    color: #ddd;
    font-style: italic;
}

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

.back-to-home {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.home-link {
    display: inline-block;
    color: #ffd700;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #ffd700;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 1.1rem;
}

.home-link:hover {
    background: #ffd700;
    color: #2c1810;
}

/* Footer Content Layout */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.contact-content, .privacy-content {
    text-align: center;
}

.privacy-link, .contact-link {
    display: inline-block;
    color: #ffd700;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #ffd700;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: bold;
    margin-top: 1rem;
}

.privacy-link:hover, .contact-link:hover {
    background: #ffd700;
    color: #2c1810;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.privacy-section h3 {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.privacy-section p {
    font-size: 1.1rem;
    color: #f4e6d7;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    font-size: 1.1rem;
    color: #f4e6d7;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: linear-gradient(135deg, #3d2817, #2c1810);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #ffd700;
    text-decoration: underline;
}

.contact-info a:hover {
    color: #d4af37;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .hero-banner {
        height: 50vh;
        min-height: 300px;
        max-height: 500px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .feature-item img {
        height: 200px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-card h3 {
        font-size: 1.5rem;
    }
    
    .privacy-section ul {
        margin-left: 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        gap: 1rem;
        padding: 0 15px;
    }
    
    .feature-item img {
        height: 180px;
    }
}
