/* Import fonts similar to Weebly */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Open+Sans:wght@400;600&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #333;
    margin: 0;
    padding: 40px 20px;
}

/* Container for all content */
.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    border: 2px solid #000;
}

/* Ensure all links are clickable and styled */
a, a:link, a:visited, a:hover, a:active, a:focus {
    text-decoration: none;
    color: #DC9F3D !important;
    cursor: pointer;
    display: inline;
    position: relative;
    z-index: 1;
}

a:hover, a:focus {
    text-decoration: underline;
    color: #b88535 !important;
}

/* Override any potential pointer-events issues */
.element a {
    pointer-events: auto !important;
    text-decoration: none;
    color: #DC9F3D !important;
    cursor: pointer !important;
}

.element a:hover {
    text-decoration: underline;
    color: #b88535 !important;
}

/* Header styles */
header {
    background-color: #DC9F3D;
    padding: 15px 40px;
    text-align: left;
}

header h1 {
    font-family: 'Noto Serif', serif;
    font-size: 2.5em;
    margin-bottom: 0;
    color: #fff;
    font-weight: 700;
}

/* Banner image area */
.banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Main content styles */
main {
    padding: 40px 20px;
    background-color: #fff;
}

section {
    margin-bottom: 40px;
}

section:last-child {
    margin-bottom: 0;
}

section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    padding-bottom: 10px;
    text-align: center;
}

section h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

section p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
}

.element {
    margin-bottom: 10px;
    line-height: 1.6;
}

.element ul {
    margin: 0;
    padding-left: 35px;
    list-style-type: disc;
}

.element li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Contact links styles */
.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 180px;
}

.contact-link:hover {
    background-color: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
    border-color: #ff6b35;
}

.contact-link .icon {
    font-size: 1.3em;
    margin-right: 12px;
    width: 25px;
    text-align: center;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    color: #666;
    font-size: 0.9em;
    border-top: 1px solid #ddd;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    main {
        padding: 30px 15px;
    }
    
    section h2 {
        font-size: 1.8em;
    }
    
    section p {
        font-size: 1em;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-link {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }
    
    section h2 {
        font-size: 1.5em;
    }
    
    section p {
        font-size: 1em;
    }
}