:root {
    --primary-color: #0A0F1C;    /* Deep navy base */
    --accent-color: #ecbc52;     /* Gold accent */
    --secondary-color: #1A2335;  /* Dark blue-gray */
    --text-dark: #E0E0E0;        /* Light gray */
    --text-light: #b0acac;       /* Pure white */
    --border-color: #2D384D;     /* Medium blue-gray */
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Center the Hero Content */
.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

/* Typing Effect */
.typing-effect {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    overflow: hidden; /* Hide the text until it's typed */
    white-space: nowrap; /* Prevent text from wrapping */
    display: inline-block;
    border-right: none; /* Removed to avoid double cursor */
    animation: typing 3s steps(30, end) forwards;
	transition: opacity 0.1s ease-in;
}

/* Flashing Cursor */
.cursor {
    display: inline-block;
    background-color: var(--accent-color);
    width: 8px;
    height: 1.2em;
    margin-left: 5px;
    animation: blink 0.8s steps(2, start) infinite;
    vertical-align: bottom;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .typing-effect {
        font-size: 2.5rem; /* Reduce font size for smaller screens */
        white-space: normal; /* Allow text to wrap */
        word-break: break-word;
        line-height: 1.2; /* Adjust line height for readability */
    }
}

@media (max-width: 480px) {
    .typing-effect {
        font-size: 2rem;
    }
}

.services,
.process-preview,
.about,
.contact {
    background: #0b1020;
}

.services,
.process-preview,
.about,
.contact {
    padding: 5rem 0;
}

.process-preview,
.about,
.contact {
    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

/* Hero Section Background Animation */
.hero {
    background: linear-gradient(rgba(10, 15, 28, 0.9), rgba(10, 15, 28, 0.9)), 
                url('https://images.unsplash.com/photo-1508921108053-9f757ead871c?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
    animation: backgroundMove 15s infinite alternate ease-in-out;
}

@keyframes backgroundMove {
    from { background-position: center; }
    to { background-position: center bottom; }
}

/* Center the Hero Content */
.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

/* Typing Effect */
.typing-effect {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    overflow: hidden; /* Hide the text until it's typed */
    white-space: nowrap; /* Prevent text from wrapping */
    display: inline-block;
    border-right: none; /* Removed to avoid double cursor */
    animation: typing 3s steps(30, end) forwards;
}

/* Flashing Cursor */
.cursor {
    display: inline-block;
    background-color: var(--accent-color);
    width: 8px;
    height: 1.2em;
    margin-left: 5px;
    animation: blink 0.8s steps(2, start) infinite;
    vertical-align: bottom;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .typing-effect {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .typing-effect {
        font-size: 2rem;
    }
}

body {
    color: var(--text-dark);
    background: var(--primary-color);
}
.logo-link {
    display: flex; /* Align image and text */
    align-items: center;
    text-decoration: none; /* Remove underline */
    color: inherit; /* Keep default text color */
    font-weight: bold;
    gap: 0.5rem; /* Space between logo and text */
}

.logo-text {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.logo-link:hover .logo-icon {
    transform: scale(1.1); /* Slight animation on hover */
}

.logo-link:hover .logo-text {
    color: var(--text-dark); /* Optional: Change color on hover */
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    height: 2.5rem;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

/* Add this to css/style.css */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-logo {
    width: min(50vw, 400px);
    margin-bottom: 2rem;
    animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.loading-bar-container {
    width: min(80vw, 400px);
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

header {
    background: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.nav-links a:hover {
    color: var(--accent-color);
}


.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 4rem 2rem;  /* Adjusted for consistency */
    text-align: center;
    border-top: 2px solid var(--accent-color);  /* Added top border */
    border-bottom: 2px solid var(--accent-color);  /* Added bottom border */
}

.services h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.services .tagline {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed);
    text-decoration: none;
    color: var(--text-dark);
}

.services-intro {
    max-width: 820px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: center;
}

.service-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--accent-color);
    border-radius: 999px;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 320px;
}

.service-card p {
    margin-top: 0.5rem;
}

.service-details .service-description {
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .service-features {
        columns: 1;
    }

    .services-intro {
        font-size: 1rem;
    }

    .service-card {
        min-height: auto;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services h2 {
        font-size: 2rem;
    }

    .services .tagline {
        font-size: 1.2rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-card p {
        font-size: 1rem;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h4 {
    margin: 0.5rem 0 1rem;
    color: var(--text-light);
    font-size: 1.25rem;
}

.contact-intro {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.88);
}

.contact-form {
    background: #151c31;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    padding: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: #0f1528;
    color: var(--text-light);
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
}

.contact-form label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 600;
    color: var(--text-light);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .cta-button {
    width: 100%;
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

.process-preview {
    padding: 5rem 0;
    border-top: 1px solid var(--accent-color);
    border-bottom: none;
    background: var(--primary-color);
}

.process-preview h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.process-preview .tagline {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    margin-bottom: 0.5rem;
}

.section-heading .tagline {
    margin-bottom: 1rem;
}

.process-intro {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.02rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.process-card {
    background: var(--secondary-color);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 15px;
    padding: 2rem;
    min-height: 260px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.process-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 1.25rem;
}

.process-card h3 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
    }
}


.about {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 4rem 2rem;
    text-align: center;
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.about h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.about .tagline {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
}

@media (max-width: 768px) {
    .about h2 {
        font-size: 2rem;
    }

    .about .tagline {
        font-size: 1.2rem;
    }

    .about p {
        font-size: 1rem;
    }
}

.contact {
    padding: 4rem 0;
    background: var(--primary-color);
    border-top: 2px solid var(--accent-color);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-details p {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 1rem;
    color: var(--accent-color);
    width: 25px;
}

.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.hero-subtitle {
    max-width: 850px;
    margin: 1rem auto 0;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button-secondary {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.cta-button-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.contact-intro {
    margin: 1rem 0 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .cta-button {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color var(--transition-speed);
}

.social-links a:hover {
    color: var(--accent-color);
}

.cta-button {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
	display: inline-block; /* Changed from button element */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #E6C300;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.service-details {
    padding: 8rem 0 4rem;
}

.back-button {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity var(--transition-speed);
}

.back-button:hover {
    opacity: 0.8;
}

.service-section {
    margin-bottom: 3rem;
}

.service-features {
    list-style: none;
    columns: 2;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.service-process {
    list-style: none;
    counter-reset: process-counter;
}

.service-process li {
    counter-increment: process-counter;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
}

.service-process li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--accent-color);
    color: black;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

footer {
    background: var(--primary-color);
	border-top: 1px solid var(--border-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    display: none;
}

.input-error {
    border-color: #ff6b6b !important;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-features {
        columns: 1;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* Mobile Navigation */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--primary-color);
        flex-direction: column;
        padding: 7rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        display: flex; /* Ensure nav is always displayed, managed by positioning */
    }

    .nav-links.active {
        right: 0; /* Slide the nav in from the right */
    }

    .nav-links a {
        padding: 1rem;
        border-radius: 4px;
        transition: background 0.3s ease;
    }

    .nav-links a:hover {
        background: var(--secondary-color);
    }
}

/* Remove this conflicting rule */
@media (max-width: 768px) {
    /* .nav-links {
        display: none;  // This hides the nav even when active. Remove this.
    } */
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-cta h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.service-cta p {
    margin-bottom: 1rem;
}

.cta-button {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #e6c300;
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   NEW STYLES - Add these to the END of style1.css
   ============================================ */

/* Hero trust signals */
.hero-trust-signals {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0 0.5rem;
}

.hero-trust-signals span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-trust-signals i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-trust-signals {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .hero-trust-signals span {
        font-size: 0.85rem;
    }
}

/* Service card pricing meta */
.service-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-timeline {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.service-timeline i {
    font-size: 0.8rem;
    color: var(--accent-color);
}

/* Pricing note below service cards */
.pricing-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1rem 1.5rem;
    background: rgba(236, 188, 82, 0.06);
    border: 1px solid rgba(236, 188, 82, 0.15);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.pricing-note i {
    color: var(--accent-color);
    margin-right: 0.4rem;
}

/* Service detail page - pricing section */
.pricing-section {
    background: rgba(236, 188, 82, 0.04);
    border: 1px solid rgba(236, 188, 82, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.pricing-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.pricing-item {
    text-align: center;
    padding: 1.25rem;
    background: rgba(10, 15, 28, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.pricing-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.pricing-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.pricing-factors {
    margin-top: 1.5rem;
}

.pricing-factors-label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.pricing-factors-list {
    list-style: none;
    columns: 2;
    margin: 0 0 1.5rem;
    padding: 0;
}

.pricing-factors-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.pricing-factors-list li::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.7rem;
    top: 0.55rem;
}

.pricing-note-detail {
    padding: 1rem;
    background: rgba(10, 15, 28, 0.4);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-note-detail i {
    color: var(--accent-color);
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-factors-list {
        columns: 1;
    }
}