:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333333;
    --light-bg: #f8f9fa;
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/material-icons.woff2') format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    padding: 60px 0;
    color: white;
    margin-bottom: 30px;
}

.hero-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
}

.card-panel.custom-card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card-panel.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.btn-custom {
    background-color: var(--secondary-color) !important;
    color: white !important;
    border-radius: 30px;
    padding: 0 30px;
    height: 48px;
    line-height: 48px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 5px;
    border: none;
}

.btn-custom:hover {
    background-color: #2980b9 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-large.btn-custom {
    height: 56px;
    line-height: 56px;
    font-size: 1.1rem;
}

.highlight-row:hover {
    background-color: #F0F0F0 !important;
}

.footer {
    background-color: var(--primary-color);
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
    color: #ecf0f1;
}

.contact-btn {
    text-align: center;
    margin: 40px 0;
}

.problem-list {
    list-style-type: none;
    padding-left: 0;
}

.problem-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 40px;
    font-size: 1.1rem;
}

.problem-list li:before {
    content: "✓";
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 12px;
    font-weight: bold;
}

.price-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 15px;
    font-size: 1.1rem;
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .problem-list li {
        padding-left: 35px;
        font-size: 1rem;
    }
}

.equal-height {
    display: flex;
    flex-wrap: wrap;
}

.equal-height .col {
    display: flex;
    flex-direction: column;
}

.equal-height .custom-card {
    flex: 1 0 auto;
}

/* Reviews Carousel */
.reviews-section {
    margin: 60px 0;
}

.reviews-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 10px 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) #f1f1f1;
    margin: 20px -10px;
}

.reviews-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.review-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.review-date {
    color: #777;
    font-size: 0.9rem;
}

.review-rating {
    color: #FFC107;
    margin: 5px 0 10px;
}

.review-text {
    flex-grow: 1;
    line-height: 1.6;
    color: #555;
    font-size: 0.95rem;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: var(--secondary-color);
    color: white;
}

.scroll-arrow.left {
    left: -20px;
}

.scroll-arrow.right {
    right: -20px;
}

.scroll-arrow i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 300px;
    }
    
    .scroll-arrow {
        display: none;
    }
    
    .reviews-container {
        padding: 20px 0 40px;
        margin: 20px 0;
    }
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 85vw;
        padding: 20px;
    }
    
    .reviews-section {
        margin: 40px 0;
    }
    
    .reviews-container {
        gap: 15px;
        padding-bottom: 30px;
    }
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info .material-icons {
    margin-right: 10px;
    color: var(--secondary-color);
}

.contact-info a {
    color: var(--secondary-color);
    font-weight: 500;
}

.center-align .material-icons.large {
    font-size: 3rem;
    margin-bottom: 15px;
}