/* Basic reset and layout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', Arial, sans-serif;
    margin-bottom: 15px;
}
p {
    margin-bottom: 15px;
}
a {
    text-decoration: none;
    color: #333;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.column {
    padding: 0 15px;
    flex: 1;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 3px;
    margin: 10px 0;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
img {
    max-width: 100%;
    height: auto;
}

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo img {
    max-width: 110px;
}
.main-menu {
    display: flex;
}
.main-menu ul {
    list-style: none;
    display: flex;
}
.main-menu li {
    margin: 0 15px;
    position: relative;
}
.main-menu a {
    font-weight: 600;
}
.main-menu .sub-menu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 0;
}
.main-menu li:hover .sub-menu {
    display: block;
}
.main-menu .sub-menu li {
    margin: 0;
    padding: 5px 15px;
}
.header-buttons {
    display: flex;
}
.header-buttons .button {
    margin-left: 10px;
}
.mobile-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
}
.mobile-menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    position: relative;
}
.mobile-menu-icon:before,
.mobile-menu-icon:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 0;
}
.mobile-menu-icon:before {
    top: -8px;
}
.mobile-menu-icon:after {
    bottom: -8px;
}

/* Hero section */
.hero-section {
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.hero-section .container {
    position: relative;
    z-index: 1;
}
.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero {
    background-color: #f5f5f5;
    padding: 60px 0;
}
.hero-content {
    display: flex;
    align-items: center;
}
.hero-text {
    flex: 1;
    padding-right: 30px;
}
.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.hero-image {
    flex: 1;
}

/* Section styles */
.section-title {
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
}
footer a {
    color: #fff;
}
.footer-logo img {
    max-width: 110px;
    margin-bottom: 20px;
}
.footer-links h4 {
    margin-bottom: 20px;
    color: #fff;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 20px;
}
.copyright {
    margin-top: 30px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
    }
    .main-menu {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .hero-content {
        flex-direction: column;
    }
    .hero-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .row {
        flex-direction: column;
    }
    .column {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Main menu active state */
.main-menu.active {
    display: block;
    width: 100%;
    margin-top: 20px;
}
.main-menu.active ul {
    flex-direction: column;
}
.main-menu.active li {
    margin: 10px 0;
    text-align: center;
} 