:root {
    --primary-color: #0069aa;
    --secondary-color: #ff7f27;
    --background-color: #f8f9fa;
    --text-color: #333;
    --light-gray: #e9ecef;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

header {
    background: white;
    padding: 15px 0;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    width: 350px;
    height: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-top: 0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Two-column layout */
.row {
    display: flex;
    width: 100%;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    width: calc(50% - 10px);
    min-width: 0;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.welcome, .about {
    flex: 1 1 calc(50% - 20px);
}

.services, .why-choose-us {
    flex: 1 1 calc(50% - 20px);
}

.contact {
    width: 100%;
}

.map-container {
    width: 100%;
    height: 300px;
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

ul li:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.contact-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.contact-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

footer {
    text-align: center;
    padding: 25px 0;
    background: var(--primary-color);
    color: white;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
    
    section {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .header-content {
        flex-direction: column;
    }
    
    .logo {
        width: 280px;
    }
} 