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

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.top-section {
    background-color: #000000;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 80px;
    position: relative;
}

.main-heading {
    font-family: "dharma-gothic-e", sans-serif;
    font-size: 180px;
    font-weight: 700;
    color: #ffffff;
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.subtitle-left {
    position: absolute;
    bottom: 60px;
    left: 80px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}

.email-left {
    position: absolute;
    bottom: 20px;
    left: 80px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.email-right {
    position: absolute;
    top: 80px;
    right: 80px;
    color: #ffffff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.bottom-section {
    background-color: #EBEBEB;
    height: 50vh;
    display: flex;
    align-items: flex-end;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 80px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    width: auto;
}

.catchphrase {
    position: absolute;
    bottom: 60px;
    right: 80px;
    color: #D41624;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: right;
    line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .main-heading {
        font-size: 140px;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 80px;
        padding-right: 40px;
    }
    
    .top-section,
    .bottom-section {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .subtitle-left,
    .email-left,
    .subtitle-right,
    .email-right,
    .catchphrase {
        left: 40px;
        right: 40px;
    }
    
    .logo img {
        height: 25px;
    }
}
