/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@400;500;600;700&display=swap');

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

body {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header/Offer Block */
header {
    min-height: 400px;
    padding: 4rem 2rem;
    background-image: url('https://pattern.monster/ornamental-4/');
    background-size: cover;
    background-position: center;
    background-color: #006064;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 96, 100, 0.9), rgba(0, 150, 136, 0.85));
}

header > * {
    position: relative;
    z-index: 2;
}

header h1 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-button {
    display: inline-block;
    padding: 1rem 2rem;
    margin-top: 2rem;
    background-color: #e65100;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.header-button:hover {
    background-color: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Main Content Sections */
main {
    padding: 2rem;
}

section {
    background: #fff;
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-family: 'Lora', serif;
    color: #006064;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

/* Article Styling */
article {
    background: #f8f8f8;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 4px solid #006064;
    border-radius: 0 10px 10px 0;
}

article h3 {
    color: #006064;
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
}

/* Lists Styling */
ul {
    list-style: none;
}

ul li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

/* Form Styling */
form {
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #006064;
    border-radius: 5px;
    font-size: 1rem;
}

button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background-color: #006064;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #00796b;
}

/* Contact Section */
#elaqe iframe {
    border-radius: 10px;
    margin: 2rem 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #006064;
    color: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
    header {
        min-height: 300px;
        padding: 2rem 1rem;
    }

    header h1 {
        font-size: 2rem;
    }

    main {
        padding: 1rem;
    }

    section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }

    h2 {
        font-size: 1.5rem;
    }

    article {
        padding: 1rem;
    }

    .header-button {
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    section {
        padding: 1.5rem 1rem;
    }

    ul li {
        padding: 0.8rem 0;
    }
}