/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Montserrat, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
header {
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 360px;
    height: auto;
    margin-right: 10px;
}

.logo h1 {
    font-size: 24px;
    color: #2c3e50;
    font-weight: 600;
}

/* Main Content Styles */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.background img {
    max-width: 120%;
    height: auto;
    margin-bottom: 30px;
}

.content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.content p {
    font-size: 16px;
    color: #5d6778;
    margin-bottom: 25px;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

/* Footer Styles */
footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

footer p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 5px 0;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    
    .background {
        flex: 1;
    }
    
    .content {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .content h2 {
        font-size: 24px;
    }
    
    .content p {
        font-size: 15px;
    }
}