* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
}

header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid #000;
}

header img {
    width: 50%;
}

header p {
    font-size: 1.2rem;
    font-weight: bold;
}

section {
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

section .left {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 100px;
    padding-left: 100px;
}

section .left .address {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}

section .left .address p {
    font-size: 1.2rem;
    font-weight: bold;
}

section .left .btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 20px;
}

section .left .btn p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

section .left .btn button {
    width: 20%;
    height: 50px;
    border: none;
    outline: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 5px 5px 1px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

section .left .btn button:hover {
    background-color: #1e90ff;
    color: #fff;
    box-shadow: none;
}

section .left .bottom {
    width: 100%;
    margin-top: 20px;
}

section .left .bottom p {
    font-size: 1.2rem;
    font-weight: bold;
}

section .left .bottom p span {
    color: #1e90ff;
    cursor: pointer;
}

section .left .bottom h1 {
    margin-top: 10px;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}   

section .right {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

section .right img {
    width: 90%;
    height: 90%;
    object-fit: cover;
}

footer {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #000;
}

@media (max-width: 768px) {
    section .left {
        width: 100%;
    }

    section .right {
        display: none;
    }
}

