:root {
    --primary-color: #1a73e8;
    --secondary-color: #f1f3f4;
    --text-color: #202124;
    --heading-font: 'Inter', sans-serif;
    --body-font: 'Inter', sans-serif;
}

body {
    font-family: var(--body-font);
    background-color: #fff;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.nav__menu {
    display: none;
    gap: 30px;
}

@media (min-width: 768px) {
    .nav__menu {
        display: flex;
    }
}

.nav__menu a {
    text-decoration: none;
    color: #5f6368;
    font-weight: 500;
}

.nav__toggle {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav__toggle {
        display: none;
    }
}

.nav__button {
    display: none;
}

@media (min-width: 768px) {
    .nav__button {
        display: block;
    }
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 20px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: #5f6368;
    font-weight: 500;
    padding: 10px 0;
}

.button {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.button--primary {
    background-color: var(--primary-color);
    color: #fff;
}

.button--primary:hover {
    background-color: #185abc;
}

.hero {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 80px 0;
}

.hero__title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 20px;
    color: #5f6368;
    margin-bottom: 30px;
}

.button--large {
    font-size: 18px;
    padding: 15px 30px;
}

.section {
    padding: 60px 0;
}

.section--highlight {
    background-color: var(--secondary-color);
}

.section__title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.process-step__number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.advice-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 40px;
}

.advice-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.advice-card li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.icon-danger {
    color: #d93025;
    margin-right: 15px;
    font-size: 24px;
}

.alert--danger {
    background-color: #fce8e6;
    color: #c5221f;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.about-content, .contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-card {
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 40px;
    text-align: center;
}

.service-card__price {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
}

.text-small {
    font-size: 16px;
    font-weight: 400;
}

.service-card__features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.service-card__features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.icon-success {
    color: #1e8e3e;
    margin-right: 15px;
    font-size: 24px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
}

.testimonial-card__author {
    font-weight: 600;
    margin-top: 20px;
}

.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #dadce0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjusted for longer content */
    padding-bottom: 20px;
}

.footer {
    background-color: var(--secondary-color);
    padding: 30px 0;
    text-align: center;
}

.footer a {
    color: #5f6368;
    text-decoration: none;
    margin: 0 10px;
}


/* Essential styles from theme.css for other pages */
.card, .panel, .content-surface {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(30, 41, 59, 0.07);
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
}

.input, input, select, textarea {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 14px 16px;
    color: #202124;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.input:focus, input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

html {
    scroll-behavior: smooth;
}

/* Utilities matching previous theme */
.brand-red {
    color: #b91c1c; /* red-700 */
}
.hover\:brand-red:hover {
    color: #b91c1c;
}
.brand-red-bg {
    background-color: #b91c1c;
}
.brand-red-bg-hover:hover {
    background-color: #991b1b; /* red-800 */
}

/* Footer background for pages using footer-bg */
.footer-bg {
    background-color: #1f2937; /* gray-800 */
}

/* Minimal prose styles for content pages */
.prose {
    max-width: 65ch;
    color: #374151;
}
.prose h1 {
    color: #111827;
    font-weight: 800;
    font-size: 2.25em;
    margin-top: 0;
    margin-bottom: 0.8888889em;
    line-height: 1.1111111;
}
.prose h2 {
    color: #111827;
    font-weight: 700;
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333;
}
.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}
.prose ul {
    list-style-type: disc;
    padding-left: 1.625em;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}
.prose ol {
    list-style-type: decimal;
    padding-left: 1.625em;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}
.prose li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.prose strong {
    color: #111827;
    font-weight: 600;
}
.prose ul > li::marker {
    color: #6b7280;
}
.prose ol > li::marker {
    color: #6b7280;
}

/* Loader */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #b91c1c; /* brand-red */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
