:root {
    --primary-color: #18c9b4;
    --primary-dark: #017975;
    --secondary-color: #005451;
    --bg-light: #e8f4f2;
    --text-dark: #293231;
    --text-muted: #818181;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Beatrice', 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo img {
    height: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-profile {
    text-decoration: none;
    color: var(--text-dark);
}

.hero {
    padding: 100px 5%;
    text-align: center;
    background-color: var(--white);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h2 {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price-tag {
    padding: 12px 25px;
    border: 1px solid #e3e3e3;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
}

.price-tag b {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 201, 180, 0.3);
}

.section {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Table Style */
.table-container {
    overflow-x: auto;
    margin: 40px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

th, td {
    padding: 25px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

th {
    background-color: var(--bg-light);
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

tr {
    transition: background 0.2s;
}

tr:hover {
    background-color: #fcfdfd;
    cursor: pointer;
}

.icon-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-cell i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card p {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    color: var(--secondary-color);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.faq-answer {
    margin-top: 15px;
    color: var(--text-muted);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* Press Section */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.press-card {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
}

.press-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.press-card h4 {
    margin: 15px 0;
    color: var(--secondary-color);
}

.press-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 5% 40px;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

@media (max-width: 768px) {
    nav, .nav-actions {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .section {
        padding: 60px 5%;
    }
}
