.elementor-5908 .elementor-element.elementor-element-703c356{width:100%;max-width:100%;}body.elementor-page-5908{margin:0px 0px 0px 0px;}/* Start custom CSS for section, class: .elementor-element-c5ee526 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #4B0082; /* Purple branding */
    color: white;
}

.logo img {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #FFD700; /* Gold hover effect */
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #FFD700;
    color: #4B0082;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #FFC107;
}

/* Sections Navigation */
.sections-nav {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.sections-nav h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.section-button {
    background-color: #4B0082;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.section-button:hover {
    background-color: #6A0DAD;
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    padding: 60px 20px;
    gap: 40px;
    background-color: #fff;
}

.about-content {
    flex: 1;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    margin-bottom: 20px;
}

.secondary-button {
    background-color: #4B0082;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.secondary-button:hover {
    background-color: #6A0DAD;
}

.about-image {
    flex: 1;
    max-width: 500px;
    border-radius: 10px;
}

/* Blog Teaser Section */
.blog-teaser {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.blog-teaser h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.blog-posts {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-posts article {
    max-width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-posts h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-posts p {
    margin-bottom: 15px;
}

.blog-posts a {
    color: #4B0082;
    text-decoration: none;
    font-weight: bold;
}

.blog-posts a:hover {
    color: #6A0DAD;
}

/* Location Section */
.location {
    padding: 60px 20px;
    text-align: center;
}

.location h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.location-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.location-info {
    max-width: 300px;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.map {
    max-width: 500px;
}

/* Footer */
footer {
    background-color: #4B0082;
    color: white;
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 60px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.footer-newsletter button {
    background-color: #FFD700;
    color: #4B0082;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.footer-newsletter button:hover {
    background-color: #FFC107;
}

.footer-social img {
    height: 30px;
    margin: 0 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        max-width: 100%;
    }

    .location-content {
        flex-direction: column;
        align-items: center;
    }
}/* End custom CSS */