body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background: #ff0000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-weight: 700;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

main {
    padding: 20px 0;
}

section {
    padding: 40px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
}

section h2 {
    margin-top: 0;
    font-weight: 700;
    text-align: center;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-photo {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-photo img {
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.services .service-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.services .service-item.reverse {
    flex-direction: row-reverse;
}

.services .service-text {
    flex: 1;
    min-width: 300px;
}

.services .service-photo {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.services .service-photo img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-grid {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.gallery-grid img {
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.blog-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 300px;
    flex: 1 1 300px;
}

.blog-card-content {
    padding: 20px;
    text-align: center;
}

.blog-card-content h3 {
    margin-top: 0;
}

.blog-card-content p {
    font-weight: 300;
}

.blog-card-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.blog-card-content .btn:hover {
    background: #feb47b;
}

.videos {
    text-align: center;
}

.video-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-container {
    display: flex;
    transition: transform 0.5s ease;
}

.video-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slider-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.left-btn {
    left: 10px;
}

.right-btn {
    right: 10px;
}

.contact p {
    text-align: center;
}

.contact a {
    color: #ff0000;
    text-decoration: none;
    font-weight: 400;
}

.map {
    text-align: center;
    margin-top: 20px;
}

.footer {
    background: #ff0000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
}

.social-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-icon img:hover {
    transform: scale(1.1);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}