/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
}

a {
    color: #4468B2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2DBE60;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4468B2;
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4468B2;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #2DBE60;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: #2DBE60;
    color: #fff;
}

.btn-primary:hover {
    background-color: #25a050;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #4468B2;
    border: 2px solid #4468B2;
}

.btn-secondary:hover {
    background-color: #4468B2;
    color: #fff;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section - UPDATED */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #4468B2 0%, #6A8DD9 100%);
    color: #fff;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    color: #fff;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero .btn-secondary {
    color: #fff;
    border-color: #fff;
}

.hero .btn-secondary:hover {
    background-color: #fff;
    color: #4468B2;
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.section-highlight {
    color: #4468B2;
    font-style: italic;
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
}

/* Tools Section */
.section-tools {
    background-color: #f9f9f9;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.tool-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tool-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(45, 190, 96, 0.4);
    pointer-events: none;
}

.tool-card h3 {
    padding: 20px 30px 10px;
    color: #4468B2;
}

.tool-card p {
    padding: 0 30px 30px;
    color: #666;
    line-height: 1.6;
}

/* Content Row Styles */
.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-row.reverse {
    direction: rtl;
}

.content-row.reverse .content-text {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 20px;
}

.feature-item {
    margin-bottom: 25px;
}

.feature-item h3 {
    color: #4468B2;
    margin-bottom: 10px;
}

/* Knowledge Section - UPDATED */
.section-knowledge {
    background-color: #f9f9f9;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.knowledge-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.knowledge-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.knowledge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.knowledge-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(45, 190, 96, 0.4);
    pointer-events: none;
}

.knowledge-card h3 {
    padding: 20px 30px 10px;
    color: #4468B2;
    text-align: center;
}

.knowledge-card p {
    padding: 0 30px 30px;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* Reviews Section - UPDATED */
.section-reviews {
    background-color: #fff;
}

.reviews-carousel {
    position: relative;
    width: 60%;
    max-width: 400px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    display: none;
    text-align: center;
}

.carousel-slide.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #4468B2;
}

.dot:hover {
    background-color: #2DBE60;
}

/* Why Choose Section - UPDATED */
.section-why {
    background-color: #f9f9f9;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.why-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-icon {
    margin-bottom: 20px;
}

.why-icon img {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}

.why-item h3 {
    color: #4468B2;
    margin-bottom: 10px;
    font-size: 20px;
}

.why-item p {
    color: #666;
    font-size: 15px;
}

.text-center {
    text-align: center;
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: #4468B2;
}

/* About Section */
.section-about {
    background-color: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
}

/* CTA Section - UPDATED */
.section-cta {
    background-color: rgba(68, 104, 178, 0.95);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #2DBE60;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 40px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .content-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Carousel adjustments for tablet */
    .reviews-carousel {
        width: 70%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions button {
        width: 100%;
        max-width: 300px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    /* Carousel adjustments for mobile */
    .reviews-carousel {
        width: 80%;
        max-width: 300px;
    }
    
    .carousel-slide img {
        max-height: 450px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    /* Carousel adjustments for small mobile */
    .reviews-carousel {
        width: 85%;
        max-width: 280px;
    }
    
    .carousel-slide img {
        max-height: 400px;
    }
    
    .carousel-container {
        padding: 15px;
    }
}