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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    body {
        overflow: auto;
    }
}

.intro-container {
    width: 100vw;
    height: 100vh;
    background-image: url('images/e9c35b_36aecf361c394870b4d60404ec63281e~mv2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.intro-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #333;
    background: rgba(255, 255, 255, 0.75);
    padding: 60px 80px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0px;
    animation: fadeIn 0.8s ease-out 0.4s both;
    width: 100%;
}

.company-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    text-align: left;
    margin: 30px 0 10px 0;
}

.logo-container h1 {
    font-size: 2rem;
    font-weight: normal;
    margin: 0;
    letter-spacing: 0.5px;
}

.company-name {
    font-size: 2.5rem;
    font-weight: normal;
    margin: 0;

    letter-spacing: 0.5px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 30px;
}

.address-section,
.contact-section {
    text-align: left;
}

.contact-section {
    margin-top: 1.7em;
}

.address-section p,
.contact-section p {
    margin: 0;
    line-height: 1.7;
}

.address,
.phone,
.email {
    margin: 0;
    line-height: 1.7;
}

.contact-details a {
    color: #C8102E;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    line-height: 1.7;
}

.contact-details a:hover {
    color: #C8102E;
    text-decoration: underline;
}

.email a {
    color: #C8102E;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.email a:hover {
    text-decoration: underline;
}

.phone,
.email {
    font-weight: 500;
}

.logo-container {
    margin-top: 0;
}

.logo {
    width: auto;
    height: auto;
    animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content {
        padding: 50px 60px;
    }

    .company-name {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .content {
        gap: 25px;
        padding: 40px 30px;
        margin: 20px;
    }

    .logo-container h1 {
        font-size: 1.6rem;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .logo {
        max-width: 95%;
    }

    .contact-details {
        font-size: 1rem;
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 20px;
    }

    .address-section,
    .contact-section {
        text-align: center;
    }

    .contact-section {
        margin-top: 0;
    }

    .intro-container {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .company-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .content {
        gap: 20px;
        padding: 30px 20px;
        margin: 10px;
    }

    .logo-container h1 {
        font-size: 1.3rem;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .logo {
        max-width: 95%;
    }

    .contact-details {
        font-size: 0.9rem;
        gap: 20px;
        margin-top: 15px;
    }

    .address-section p,
    .contact-section p {
        line-height: 1.6;
    }
}

@media (max-width: 360px) {
    .content {
        padding: 20px 15px;
        margin: 5px;
    }

    .logo-container h1 {
        font-size: 1.1rem;
    }

    .company-name {
        font-size: 1rem;
    }

    .contact-details {
        font-size: 0.85rem;
    }
}