* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    padding: 2rem 0;
    text-align: center;
}

.header-logo {
    max-width: 450px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    text-align: center;
    z-index: 10;
}

.hero-overlay blockquote {
    font-size: 2rem;
    font-style: italic;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.8;
    padding: 2rem;
}

.hero-overlay blockquote footer {
    margin-top: 1rem;
    font-size: 1.3rem;
    font-style: normal;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* About Section */
.about {
    padding: 4rem 0;
    background: white;
}

.about h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
}

/* Companies Section */
.companies {
    padding: 4rem 0;
    background: #f9f9f9;
}

.companies h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.company-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.company-card a {
    display: block;
    cursor: pointer;
}

.company-card img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    display: block;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: white;
}

.contact h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #f4f4f4;
    border-radius: 8px;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    font-size: 1.1rem;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 768px) {
    .header-logo {
        max-width: 300px;
    }

    .hero {
        height: 400px;
    }

    .hero-overlay blockquote {
        font-size: 1.3rem;
        padding: 1.5rem;
    }

    .hero-overlay blockquote footer {
        font-size: 1rem;
    }

    .about h2,
    .companies h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .company-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
