/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'MyriadPro-Regular', sans-serif;
}

body {
    background: url('LCN-lifestyle-BG.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 40px 20px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.logo img {
    display: block;
    margin: 0 auto 40px; /* Increased vertical space below the logo */
}

.title h2 {
    font-size: 25px;
    font-weight: 200;
    color: #000;
    margin-bottom: 40px; 
    text-transform: uppercase; 
}

.description p {
    font-size: 18px;
    color: #000;
    margin-bottom: 40px; /* Increased vertical space below the paragraph */
}

.highlight {
    color: #a70040;
    font-weight: bold;
}

.contact-button a {
    display: inline-block;
    padding: 12px 30px;
    background-color: #a70040;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.contact-button a:hover {
    background-color: #870033;
}

.footer-text {
    margin-top: 80px;
    text-align: center;
    font-size: 14px;

}
.footer-text a {
    color: #000;
    text-decoration: none;
}
.footer-text a:hover {
    color: #a70040;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .description p {
        font-size: 16px;
    }

    .logo img {
        margin-bottom: 30px;
        max-width: 80%;
        height: auto;
    }

    .description p {
        margin-bottom: 30px;
    }
    
    .title h2 {
    font-size: 21px;
    font-weight: 300;
    color: #000;
    margin-bottom: 20px; 
    text-transform: uppercase; 
    }
    
    body {
    background: url('LCN-lifestyle-vertical-BG.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    }
}
