:root {
    --primary-color: #2c3e50; /* Deep professional blue */
    --accent-color: #3498db;  /* Soft CTA blue */
    --bg-light: #f8fafc;     /* Very light gray/white */
    --text-main: #334155;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    font-size: 18px; /* Slightly bigger font */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Promo Bar */
.promo-bar {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 1.1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navigation */
nav {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-color);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 25px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #64748b;
}

/* Features */
.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.feature-item {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-stars {
    width: 100px;
}

/* Buttons */
.cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 10px 15px -3px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: #2980b9;
}

/* FAQ Section */
.info-section {
    padding: 80px 0;
    background: white;
}

.info-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 40px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.center-cta {
    text-align: center;
    margin-top: 60px;
}

footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .nav-links { display: none; }
}