﻿
body {
    background-color: #f4f4f4 !important;
    color: #333;
    line-height: 1.6;
}
        
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
        
.text-theme {
    color: #e17966;
}
        
.intro {
    display: flex;
    flex-direction: row;
    margin-bottom: 60px;
    background: #fef6f5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
        
.image-column {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
        
.image-column img {
    max-width: 100%;
    max-height: 550px;
    border-radius: 8px;
}
        
.text-column {
    width: 50%;
    padding: 40px;
}
        
.text-column h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}
        
.text-column p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #555;
}
        
.btn-contact {
    display: inline-block;
    background-color: #e17966;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}
        
.btn-contact:hover {
    background-color: #c95e4a;
}
        
.text-center {
    text-align: center;
}
        
.section-title {
    margin-bottom: 40px;
}
        
.section-title h3 {
    font-size: 28px;
    margin-bottom: 10px;
}
        
.section-title h4 {
    font-size: 18px;
    color: #777;
    font-weight: normal;
}

.features {
    display: flex;
    flex-direction: row;
    column-gap: 25px;
}

.features-tab {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    align-self: center;
    margin-top: -85px;
}

.tab-row {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.tab {
    flex: 1;
    min-width: 150px;
    max-width: 180px;
    background: white;
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    height: 170px;
}

.tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tab.active {
    border-color: #e17966;
    background-color: #fef6f5;
}

.tab-title {
    color: #333;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.tab hr {
    width: 80%;
    margin: 8px auto;
    border: none;
    border-top: 2px solid #eed8d8;
}

.tab img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}
        
/* Slider Styles */
.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
    overflow: hidden;
    border-radius: 10px;
}
        
.feature-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
        
.details {
    flex: 0 0 100%;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    border-style: solid;
    border-width: thin;
    border-color: #555;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
        
.detail-title {
    color: #e17966;
    font-size: 24px;
    margin-bottom: 20px;
}
        
.detail-text {
    margin-bottom: 25px;
    color: #555;
}
        
.details hr {
    width: 90%;
    margin: 20px auto;
    border: none;
    border-top: 2px solid #eed8d8;
}
        
.details ul {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
}
        
.details ul li {
    padding: 8px 0;
    font-size: 16px;
}
        
.details ul li::before {
    content: "✓ ";
    color: #e17966;
    font-weight: 700;
    margin-right: 8px;
}
        
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}
        
.slider-btn {
    background-color: #e17966;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(225, 121, 102, 0.3);
}
        
.slider-btn:hover {
    background-color: #c95e4a;
    transform: scale(1.05);
}
        
.slider-dots {
    display: flex;
    gap: 10px;
}
        
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}
        
.slider-dot.active {
    background-color: #e17966;
}
        
.more {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 40px;
}
        
.more p {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
        
.iframe-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
        
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
        
@media (max-width: 757px) {
    .intro {
        flex-direction: column;
    }
            
    .image-column, .text-column {
        width: 100%;
    }
            
    .text-column {
        padding: 30px 20px;
    }
            
    .text-column h2 {
        font-size: 26px;
    }
            
    .details {
        padding: 30px 20px;
        min-height: 450px;
    }
            
    .slider-btn {
        width: 45px;
        height: 45px;
    }

    /*.features {
        flex-direction: column;
    }*/
}

@media (max-width: 900px) {
    .features-tab {
        display: none;
    }
}


