* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
    font-family: "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(to bottom, #111 0%, #000 100%);
    color: white;
    overflow-x: hidden;
    padding-top: 80px;
}

body {
    font-family: 'Inter' sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #f5f5f5;
    background-color: #000;
    margin: 0;
    padding: 0;
}

.cta-button:hover {
    background-color: #019170;
}

.support {
    text-align: center;
    padding: 40px 20px;
    font-size: 1.2rem;
    background: transparent;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 20px;
    background: transparent;
}

.stat {
    flex: 1 1 200px;
    text-align: center;
    margin: 10px;
}

.stat h2 {
    font-size: 2rem;
    color: #00b894;
}

.methods-chart {
    padding: 40px 20px;
    background: transparent;
    max-width: 600px;
    margin: auto;
}

.methods-chart h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.bar-container {
    position: relative;
    margin-left: 160px;
    margin-bottom: 15px;
    height: 24px;
}

.bar {
    position: relative;
    height: 100%;
    background-color: #00b894;
    border-radius: 5px;
    overflow: visible;
}

.bar-label {
    position: absolute;
    left: -160px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    white-space: nowrap;
}

.bar-percentage {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(110%, -50%);
    font-size: 0.9rem;
    color: #ccc;
    white-space: nowrap;
}

.footer {
    text-align: center;
    padding: 30px 10px;
    font-size: 0.9rem;
    background: #111;
    color: #ccc;
}

.motivational-carousel {
    text-align: center;
    padding: 20px 10px;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 500;
    font-style: italic;
    min-height: 40px;
}

#motivational-text {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.phone-section {
    text-align: center;
    padding: 50px 20px;
}

.phone-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #fff;
}

.phone-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.phone-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 30px 20px;
    width: 250px;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.phone-card:hover {
    transform: translateY(-5px);
}

.phone-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #00cc99;
}

.phone-card p {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.about-us {
    padding: 30px 20px;
    text-align: center;
    background: transparent;
    margin-top: 40px;
    color: #fff;
}

.about-us h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-us p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.site-header {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 24px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.header-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 75px;
    margin-right: 16px;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.disclaimer {
    font-size: 0.9rem;
    color: #cccccc;
    font-style: italic;
    margin-top: 10px;
    max-width: 600px;
    line-height: 1.4;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: 60px 20px;
    margin: 0 auto;
    max-width: 1200px;
}

section h2, section h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

a[href^="tel"]:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p, .phone-card p {
        font-size: 0.95rem;
    }

    .phone-card h3 {
        font-size: 1.1rem;
    }

    section {
        padding: 40px 15px;
    }
}