/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #F6F3EF;
    color: #000000;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Main Container */
.container {
    width: 1440px;
    height: 1024px;
    position: relative;
    background-color: #F6F3EF;
    margin: 0 auto;
}

/* Logo */
.logo-container {
    position: absolute;
    left: 56px;
    top: 50px;
    width: 50px;
    height: 51px;
    z-index: 10;
}

.logo {
    width: 100%;
    height: 100%;
    display: block;
}

/* Brand Name */
.brand-name {
    position: absolute;
    left: 131px;
    top: 47px;
    width: 318px;
    height: 58px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 1.193em;
    color: #000000;
    margin: 0;
    z-index: 10;
}

/* Main Content Wrapper with 75px Gap */
.main-content-wrapper {
    position: absolute;
    left: 123px;
    top: 358px;
    width: 1397px;
    display: flex;
    flex-direction: column;
    gap: 75px;
    z-index: 10;
}

/* Content Container with 20px Internal Gap */
.content-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Main Heading */
.main-heading {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 100px;
    line-height: 1.221em;
    color: #000000;
    margin: 0;
}

/* Description Line 1 */
.description-line1 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 1.193em;
    color: #000000;
    margin: 0;
}

/* Description Line 2 */
.description-line2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 1.193em;
    color: #000000;
    margin: 0;
    max-width: 1034px;
}

/* Contact Information */
.contact-info {
    width: 1020px;
    font-family: 'Canela', Georgia, serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.51em;
    color: #C76A47;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1440px) {
    .container {
        width: 100%;
        height: auto;
        min-height: 100vh;
        padding: 40px 60px;
    }

    .logo-container {
        left: 40px;
        top: 40px;
    }

    .brand-name {
        left: 100px;
        top: 40px;
        font-size: 40px;
        width: auto;
    }

    .main-content-wrapper {
        left: 100px;
        top: 250px;
        width: calc(100% - 200px);
        gap: 60px;
    }

    .content-container {
        gap: 20px;
    }

    .main-heading {
        font-size: 80px;
    }

    .description-line1 {
        font-size: 40px;
    }

    .description-line2 {
        font-size: 36px;
        max-width: 100%;
    }

    .contact-info {
        font-size: 24px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 20px 30px;
    }

    .logo-container {
        left: 20px;
        top: 20px;
        width: 40px;
        height: 40px;
    }

    .brand-name {
        left: 70px;
        top: 22px;
        font-size: 28px;
    }

    .main-content-wrapper {
        left: 30px;
        top: 130px;
        width: calc(100% - 60px);
        gap: 50px;
    }

    .content-container {
        gap: 15px;
    }

    .main-heading {
        font-size: 48px;
    }

    .description-line1 {
        font-size: 24px;
    }

    .description-line2 {
        font-size: 22px;
        max-width: 100%;
    }

    .contact-info {
        font-size: 18px;
        width: 100%;
    }
}

