/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d3748;
    --secondary-color: #4a5568;
    --accent-color: #718096;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --bg-gray: #edf2f7;
    --success-color: #4a5568;
    --border-color: #e2e8f0;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

/* Header */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.7;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

.phone-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.phone-button:hover {
    background-color: var(--gray-600);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
    text-decoration: none;
}

.phone-icon {
    font-size: 20px;
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    color: var(--text-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(0,0,0,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.cta-button:hover {
    background-color: var(--gray-700);
    border-color: var(--gray-700);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.placeholder-image {
    background-color: var(--bg-white);
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 140px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.testimonial-slider {
    position: relative;
    min-height: 200px;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 50px 40px;
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--border-color);
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stars {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--gray-500);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--gray-600);
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    background-color: var(--gray-400);
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

.content-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.content-intro h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.section {
    margin-bottom: 60px;
}

.section h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.section p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-footer {
    margin-top: 30px;
    font-weight: 500;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--gray-400);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: none;
}

.feature-card h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
}

/* Highlight Sections */
.highlight-section {
    background-color: var(--gray-50);
    padding: 45px;
    border-radius: 16px;
    border-left: 4px solid var(--gray-500);
    border: 2px solid var(--gray-200);
}

.highlight-section strong a {
    color: var(--primary-color);
    font-weight: 700;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--gray-400);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 20px;
    color: var(--gray-600);
    font-weight: bold;
    min-width: 20px;
}

.benefit-item p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
    text-align: left;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    color: var(--text-dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(0,0,0,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-item {
    text-align: center;
    background-color: var(--bg-white);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: none;
}

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 18px;
}

.contact-item a:hover {
    color: var(--text-light);
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: var(--gray-700);
    color: var(--bg-white);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.disclaimer {
    font-style: italic;
    font-size: 12px;
}

/* Page Content (for static pages) */
.page-content {
    padding: 60px 0;
    min-height: 60vh;
}

.page-title {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.effective-date {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 16px;
}

.content-section {
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.content-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-section h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 20px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: left;
}

.content-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-box {
    background-color: var(--gray-50);
    padding: 35px;
    border-radius: 16px;
    border-left: 4px solid var(--gray-500);
    margin-top: 25px;
    border: 2px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-box p {
    margin-bottom: 10px;
    font-size: 16px;
}

.note {
    background-color: var(--gray-100);
    border-left: 4px solid var(--gray-500);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    border: 2px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .placeholder-image {
        height: 250px;
        font-size: 80px;
    }

    .hero-illustration {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .content-intro h2 {
        font-size: 28px;
    }

    .section h3 {
        font-size: 24px;
    }

    .page-title {
        font-size: 30px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .phone-button {
        padding: 10px 16px;
        font-size: 14px;
    }

    .phone-number {
        display: none;
    }

    .phone-icon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 26px;
    }

    .main-content {
        padding: 50px 0;
    }

    .contact-section {
        padding: 50px 0;
    }
}