* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #2c3e50;
    color: #fff;
    padding: 1rem 0;
    border-bottom: 5px solid #27ae60;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.branding {
    float: left;
}

.branding h1 {
    margin: 0;
    font-size: 1.8rem;
}

.branding span {
    color: #27ae60;
}

nav {
    float: right;
    margin-top: 10px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

nav a:hover {
    background-color: #27ae60;
    color: #fff;
}

.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1558904541-efa843a96f01?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 400px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
}

.main-content {
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.column-left {
    flex: 3;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.column-right {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

ul.services-list li {
    background: #f9f9f9;
    border-bottom: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 5px;
}

.column-right ol {
    padding-left: 20px;
    margin: 0;
}

.column-right li {
    margin-bottom: 12px;
    line-height: 1.4;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #2c3e50;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}
.video-container {
    margin: 20px 0;
    text-align: center;
}

.video-container iframe {
    max-width: 100%;
}
form {
    display: grid;
    gap: 15px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button.btn {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
}

button.btn:hover {
    background-color: #219150;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    header .branding,
    header nav {
        float: none;
        text-align: center;
        width: 100%;
    }
    
    nav ul {
        padding: 0;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .main-content {
        flex-direction: column;
    }
    
    .column-left, 
    .column-right {
        flex: 100%;
        width: 100%;
    }
    
    .hero {
        height: 300px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 8px 10px;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .gallery img {
        height: 150px;
    }
}
@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    nav ul li {
        display: block;
        margin: 5px 0;
        text-align: center;
    }
    
    nav a {
        display: block;
        padding: 12px;
    }
    
    .branding h1 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .hero {
        height: 250px;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    table {
        font-size: 0.8rem;
    }
    
    th, td {
        padding: 6px 8px;
    }
    
    input, textarea, select, button {
        font-size: 1rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
}
@media print {
    header, footer, nav, .hero {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .main-content {
        display: block;
    }
    
    .column-left, .column-right {
        width: 100%;
        box-shadow: none;
        padding: 0;
    }
}