/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, Roboto, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.wrapper {
    width: 100%;
    max-width: 56rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Contact Header */
.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.contact-link {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    margin-bottom: 3rem;
}

/* Hero Image */
.image-container {
    width: 100%;
    max-width: 594px;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 594 / 311;
    object-fit: cover;
    display: block;
}

/* Company Title */
.company-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #004E71;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Subtitle */
.subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Company Info Footer */
.company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    width: 100%;
}

.info-block {
    text-align: center;
}

.info-text {
    font-size: 0.875rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
}

/* Responsive Design */

/* Tablet breakpoint (640px and above) */
@media (min-width: 640px) {
    .container {
        padding: 2rem;
    }

    .contact-header {
        flex-direction: row;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .contact-link {
        font-size: 1.125rem;
    }

    .image-container {
        margin-bottom: 3rem;
    }

    .company-title {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .company-info {
        flex-direction: row;
        gap: 2rem;
        margin-top: 4rem;
    }

    .info-block {
        text-align: left;
    }

    .info-text {
        font-size: 0.9375rem;
    }
}

/* Medium breakpoint (768px and above) */
@media (min-width: 768px) {
    .container {
        padding: 3rem 2rem;
    }

    .contact-header {
        gap: 4rem;
        margin-bottom: 3rem;
    }

    .contact-link {
        font-size: 1.25rem;
    }

    .image-container {
        margin-bottom: 3rem;
    }

    .company-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .subtitle {
        font-size: 1.875rem;
    }

    .company-info {
        gap: 4rem;
        margin-top: 5rem;
    }

    .info-text {
        font-size: 0.9375rem;
    }
}

/* Large breakpoint (1024px and above) */
@media (min-width: 1024px) {
    .container {
        padding: 3rem;
    }

    .contact-header {
        gap: 4rem;
        margin-bottom: 3rem;
    }

    .contact-link {
        font-size: 1.25rem;
    }

    .company-title {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }

    .subtitle {
        font-size: 1.875rem;
    }

    .company-info {
        gap: 4rem;
        margin-top: 5rem;
    }
}
