:root {
    --primary-color: #F28B0C;
    /* Targetine */
    --secondary-color: #D95204;
    /* Tenné (Tawny) */
    --accent-color: #D9BBA9;
    /* Dark Vanilla */
    --accent-color-wash: rgba(217, 187, 169, 0.10);
    /* 10% Dark Vanilla */
    --error-color: #8C2703;
    /* Smokey Topaz */
    --border-color: #8C2703;
    /* Smokey Topaz */
    --text-primary: #400101;
    /* Dark Chocolate */
    --text-secondary: #8C2703;
    /* Smokey Topaz for subtle text */
    --background-primary: #fff;
    --background-secondary: #fff;
    --footer-bg: #400101;
    --card-bg: #fff;
    --card-border: #8C2703;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --bg-color: #f8f9fa;
    --dark-card-bg: #333;
    --dark-bg: #444;
    --text-color: #fff;
}

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

body {
    font-family: 'Rubik', sans-serif;
    background-color: var(--background-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
    background-image: linear-gradient(135deg, var(--accent-color-wash), transparent 80%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--footer-bg);
    box-shadow: 0 2px 4px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.logo img {
    margin-right: 0.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s, background 0.3s;
    border-radius: 4px;
}

nav a:hover,
nav a:focus {
    color: var(--footer-bg);
    background: var(--primary-color);
}

nav a.active {
    color: var(--primary-color);
    background: #fff;
    font-weight: 600;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px var(--shadow-color);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 200px;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    color: var(--text-primary);
    background: none;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background-color: var(--accent-color-wash);
    color: var(--primary-color);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--footer-bg);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul li {
        width: 100%;
    }

    nav a {
        display: block;
        padding: 1rem;
        border-radius: 8px;
        text-align: left;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        padding: 0.5rem;
        margin-top: 0.5rem;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }

    /* Overlay for mobile menu */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .footer-links-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-links-row a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .tool-card {
        padding: 1.5rem;
    }

    .tool-card h3 {
        font-size: 1.3rem;
    }

    .key-features li {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

/* Button Styles */
button,
.cta-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    font-weight: 500;
}

button:hover,
.cta-button:hover,
button:focus,
.cta-button:focus {
    background-color: var(--secondary-color);
    color: #fff;
}

.secondary-button {
    background-color: #fff;
    color: var(--border-color);
    border: 2px solid var(--border-color);
}

.secondary-button:hover,
.secondary-button:focus {
    background-color: var(--accent-color-wash);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Card Styles */
.tool-card,
.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid var(--card-border);
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.tool-card:hover,
.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px var(--shadow-color);
    border-color: var(--primary-color);
}

/* Form Styles */
input[type="date"],
input[type="datetime-local"],
input[type="text"],
select {
    width: 100%;
    padding: 0.8rem;
    border: 1.5px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--accent-color-wash);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus,
select:focus {
    border-color: var(--primary-color);
    outline: none;
}

label {
    color: var(--text-secondary);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
    color: #fff;
    position: relative;
    margin-top: 4rem;
    padding: 4rem 0 2rem;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-logo-glow {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    animation: logoGlowPulse 3s infinite;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.footer-brand-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #E0E0E0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-description {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.footer-links-row a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-row a:hover,
.footer-links-row a:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-link-icon {
    font-size: 1.2rem;
}

@keyframes logoGlowPulse {
    0% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 700px) {
    .footer-content {
        padding: 0 1rem;
    }

    .footer-brand-name {
        font-size: 1.75rem;
    }

    .footer-description {
        font-size: 1rem;
    }

    .footer-logo-glow {
        width: 60px;
        height: 60px;
    }

    .footer-logo-img {
        width: 40px;
        height: 40px;
    }

    .footer-links-row {
        gap: 1rem;
    }

    .footer-links-row a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}
/* FAQ Section Styles */
.faq-section {
    padding: 6rem 2rem;
    background: #fff;
    position: relative;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.faq-content h2 {
    font-size: 2.8rem;
    color: #d95204;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.faq-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #d95204;
    border-radius: 2px;
}

.faq-category {
    margin-bottom: 4rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-category h3 {
    color: #d95204;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    position: relative;
}

.faq-category h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #d95204;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.8rem;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.toggle-icon {
    font-size: 1.8rem;
    color: #3498db;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    background: #3498db;
    color: white;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 1000px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.faq-answer ul {
    list-style: none;
    padding-left: 1.2rem;
    margin-bottom: 1.2rem;
}

.faq-answer ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.1rem;
}

.faq-answer ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.4rem;
    line-height: 1;
}

.faq-cta {
    max-width: 950px;
    margin: 4rem auto 2rem;
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color-wash) 0%, rgba(242, 139, 12, 0.1) 100%);
    border-radius: 16px;
    border: 2px solid var(--card-border);
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.faq-cta h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-cta p {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.faq-cta .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 139, 12, 0.3);
    border: none;
    cursor: pointer;
}

.faq-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 139, 12, 0.4);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.faq-cta .cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(242, 139, 12, 0.3);
}

@media (max-width: 768px) {
    .faq-cta {
        margin: 3rem auto 1.5rem;
        padding: 2rem;
    }

    .faq-cta h3 {
        font-size: 1.8rem;
    }

    .faq-cta p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .faq-cta .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }
}

/* Responsive Adjustments for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1rem;
    }

    .faq-content h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .faq-category {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }

    .faq-category h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .faq-question h4 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }

    .faq-answer p,
    .faq-answer ul li {
        font-size: 1rem;
    }

    .faq-cta {
        padding: 2rem;
        margin-top: 3rem;
    }

    .faq-cta p {
        font-size: 1.3rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-container {
        padding: 0 0.5rem;
    }
}

.footer-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 2.5rem 0 1.5rem 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    border: 2.5px solid var(--card-border);
    box-shadow: 0 6px 24px 0 rgba(140, 39, 3, 0.10), 0 1.5px 4px 0 var(--shadow-color);
    padding: 2rem 2rem 1.5rem 2rem;
    margin-bottom: 1rem;
    animation: cardPopIn 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    margin-right: 0.7rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--accent-color-wash);
    background: var(--accent-color-wash);
    transition: box-shadow 0.3s;
}

.footer-logo-link:hover .footer-logo {
    box-shadow: 0 4px 16px var(--primary-color);
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-shadow: 0 2px 8px var(--accent-color-wash);
}

.footer-description {
    color: var(--text-primary);
    font-size: 1.08rem;
    margin-top: 0.5rem;
    line-height: 1.6;
    font-weight: 400;
    background: var(--accent-color-wash);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    box-shadow: 0 1.5px 4px var(--shadow-color);
    border: 1.5px solid var(--card-border);
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-end;
    justify-content: flex-end;
    margin-left: auto;
    margin-top: 0.5rem;
}

.footer-links a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 1.08rem;
    border-radius: 4px;
    padding: 0.3rem 0.7rem;
    transition: background 0.3s, color 0.3s;
}

.footer-links a:hover,
.footer-links a:focus {
    background: var(--primary-color);
    color: #fff;
}

footer {
    background-color: var(--footer-bg);
    color: #fff;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 -2px 12px var(--shadow-color);
    position: relative;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .footer-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-links {
        align-items: flex-start;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .footer-brand {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        max-width: 100%;
    }

    .footer-description {
        font-size: 1rem;
        padding: 0.7rem 0.7rem;
    }

    .footer-links {
        gap: 0.7rem;
    }
}

/* Tools Grid Section Styles */
.tools-grid-section {
    margin: 3rem 0 2rem 0;
    text-align: center;
}

.tools-heading {
    font-size: 2.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px var(--accent-color-wash);
    animation: fadeInDown 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.tool-card {
    background: #fff;
    border-radius: 16px;
    border: 2.5px solid var(--card-border);
    box-shadow: 0 6px 24px 0 rgba(140, 39, 3, 0.10), 0 1.5px 4px 0 var(--shadow-color);
    text-decoration: none;
    color: var(--text-primary);
    padding: 2.5rem 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.25s, border-color 0.25s;
    will-change: transform, box-shadow;
    z-index: 1;
    animation: cardPopIn 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes cardPopIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.tool-card:hover,
.tool-card:focus {
    transform: translateY(-10px) scale(1.03) rotate(-1deg);
    box-shadow: 0 12px 32px 0 rgba(242, 139, 12, 0.18), 0 2px 8px 0 var(--shadow-color);
    border-color: var(--primary-color);
    z-index: 2;
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.tool-card:hover h3,
.tool-card:focus h3 {
    color: var(--secondary-color);
}

.tool-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.08rem;
    margin-bottom: 0;
    transition: color 0.3s;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.tool-card:hover::before,
.tool-card:focus::before {
    opacity: 0.32;
}

@media (max-width: 768px) {
    .tools-heading {
        font-size: 1.5rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tool-card {
        padding: 1.5rem 1rem 1rem 1rem;
    }
}

/* Intro/About Section Styles */
.intro-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--accent-color-wash);
    border-radius: 12px;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-text {
    text-align: left;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.key-features {
    margin: 0;
    padding: 2.5rem 2rem 2rem 2rem;
    background: #fff;
    border-radius: 16px;
    border: 2.5px solid var(--card-border);
    box-shadow: 0 6px 24px 0 rgba(140, 39, 3, 0.10), 0 1.5px 4px 0 var(--shadow-color);
    animation: cardPopIn 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.key-features::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.key-features:hover::before,
.key-features:focus::before {
    opacity: 0.32;
}

.key-features h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: left;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-shadow: 0 2px 8px var(--accent-color-wash);
    animation: fadeInDown 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.key-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

.key-features li {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 1.2rem 1.8rem;
    background: var(--accent-color-wash);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.key-features li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
    background: white;
}

@media (max-width: 768px) {
    .key-features ul {
        gap: 1rem;
    }

    .key-features li {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
}

.key-features li::before {
    display: none;
}

.key-features li {
    font-size: 1.1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
    padding: 0.8rem 1.2rem;
    background-color: var(--accent-color-wash);
    border-radius: 8px;
    box-shadow: 0 2px 4px var(--shadow-color);
    border: 1.5px solid var(--card-border);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    will-change: transform, box-shadow;
    animation: cardPopIn 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.key-features li:hover,
.key-features li:focus {
    transform: translateY(-4px) scale(1.03) rotate(-1deg);
    box-shadow: 0 8px 18px 0 rgba(242, 139, 12, 0.13), 0 2px 8px 0 var(--shadow-color);
    border-color: var(--primary-color);
    background: #fff;
}

.key-features li::before {
    content: '✨';
    font-size: 1.2rem;
    margin-right: 0.7rem;
    color: var(--primary-color);
    transition: color 0.3s;
}

.key-features li:hover::before,
.key-features li:focus::before {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .intro-section {
        margin: 2rem 0;
        padding: 2rem 0;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .intro-text p {
        text-align: center;
    }

    .key-features h3 {
        font-size: 1.4rem;
        text-align: center;
    }

    .key-features li {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
}

/* Hero Section Styles */
.hero {
    text-align: center;
    padding: 4rem 0 3rem 0;
    margin-bottom: 2.5rem;
    background: linear-gradient(120deg, var(--accent-color-wash) 60%, #fff 100%);
    border-radius: 18px;
    box-shadow: 0 6px 24px 0 rgba(140, 39, 3, 0.08), 0 1.5px 4px 0 var(--shadow-color);
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px var(--accent-color-wash);
    animation: fadeInDown 1.1s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    background: rgba(217, 187, 169, 0.13);
    border-radius: 8px;
    padding: 1.1rem 1.5rem;
    box-shadow: 0 1.5px 8px var(--shadow-color);
    border: 1.5px solid rgba(140, 39, 3, 0.13);
    animation: fadeIn 1.3s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0 1.5rem 0;
        margin-bottom: 1.2rem;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0.7rem 0.7rem;
    }
}

/* Enhanced Age Calculator Styles */
.tool-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(242, 139, 12, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 139, 12, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.tool-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(242, 139, 12, 0.15);
}

.tool-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(242, 139, 12, 0.1);
    position: relative;
    z-index: 1;
}

.tool-container {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
}

.tool-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(242, 139, 12, 0.12);
}

.input-group {
    margin-bottom: 2.5rem;
    position: relative;
}

.input-group label {
    display: block;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.input-group input[type="date"] {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.1rem;
    color: var(--text-primary);
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.input-group input[type="date"]:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 139, 12, 0.1);
}

.input-group input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(242, 139, 12, 0.15);
}

.results {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.age-display {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.age-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.age-display:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(242, 139, 12, 0.15);
}

.age-display:hover::before {
    opacity: 1;
}

.age-text {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(242, 139, 12, 0.1);
}

.age-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.age-unit {
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1.5px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.age-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 139, 12, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.age-unit:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(242, 139, 12, 0.15);
    border-color: var(--primary-color);
}

.age-unit:hover::before {
    opacity: 1;
}

.age-unit .value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.age-unit:hover .value {
    transform: scale(1.1);
}

.age-unit .label {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.next-birthday {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(242, 139, 12, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.next-birthday::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

.next-birthday:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(242, 139, 12, 0.3);
}

.next-birthday h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.next-birthday .countdown {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
}

.next-birthday .countdown small {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tool-section {
        margin: 1rem;
        padding: 1.5rem;
    }

    .tool-section h2 {
        font-size: 2rem;
    }

    .tool-container {
        padding: 1.5rem;
    }

    .age-breakdown {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .age-unit .value {
        font-size: 2rem;
    }

    .age-text {
        font-size: 1.5rem;
    }

    .next-birthday {
        padding: 1.5rem;
    }

    .next-birthday h3 {
        font-size: 1.2rem;
    }

    .next-birthday .countdown {
        font-size: 1.4rem;
    }
}

/* Date Duration Calculator Styles */
.duration-calculator {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.duration-calculator::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 139, 12, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.preset-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.preset {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.preset:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 139, 12, 0.2);
}

.duration-results {
    background: linear-gradient(135deg, #400101 0%, #2d0000 100%);
    padding: 2rem;
    border-radius: 16px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(64, 1, 1, 0.2);
    z-index: 1;
}

.duration-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

.total-duration {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.total-duration .value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.total-duration .label {
    display: block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.breakdown-unit {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.breakdown-unit:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.breakdown-unit .value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breakdown-unit .label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .duration-calculator {
        margin: 1rem;
        padding: 1.5rem;
    }

    .date-inputs {
        grid-template-columns: 1fr;
    }

    .preset-buttons {
        flex-wrap: wrap;
    }

    .preset {
        width: 100%;
    }

    .breakdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .total-duration .value {
        font-size: 2.5rem;
    }

    .breakdown-unit .value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .breakdown-grid {
        grid-template-columns: 1fr;
    }
}

/* Time Zone Converter Styles */
.timezone-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timezone-inputs::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.timezone-inputs .input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
}

.timezone-inputs .input-group label {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timezone-inputs .input-group label::before {
    content: '🌍';
    font-size: 1.2rem;
}

.timezone-inputs select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238C2703' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

.timezone-inputs select:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 139, 12, 0.15);
}

.timezone-inputs select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(242, 139, 12, 0.2);
}

/* Add styles for select options */
.timezone-inputs select option {
    color: var(--text-primary);
    background-color: var(--background-primary);
    padding: 0.5rem;
}

.time-display {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin: 2rem 0;
    padding: 1rem;
    background: linear-gradient(145deg, var(--card-bg), var(--card-bg-hover));
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hour-difference {
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hour-difference::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hour-difference:hover::before {
    transform: translateX(100%);
}

.hour-difference.ahead {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.hour-difference.behind {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.hour-difference.same {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.hour-difference.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

@media (max-width: 768px) {
    .time-display {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hour-difference {
        margin: 0.5rem 0;
        width: 100%;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 90%;
    position: relative;
    z-index: 10000;
}

.clock-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.clock-box {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 2px solid var(--border-color);
}

.clock-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 139, 12, 0.15);
}

.clock-box h3 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.clock-box .clock {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.close-modal {
    display: block;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 139, 12, 0.2);
}

.close-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 139, 12, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .clock-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .clock-box {
        padding: 1.2rem;
    }

    .clock-box .clock {
        font-size: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #400101;
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-method:hover {
    background-color: #fff5f5;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #400101;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}

.contact-details h4 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.contact-details p {
    margin: 5px 0 0;
    color: #666;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    color: #400101;
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-header p {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #400101;
    font-weight: 500;
    font-size: 16px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #400101;
    box-shadow: 0 0 0 3px rgba(64, 1, 1, 0.1);
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #400101;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #2d0000;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        padding: 10px;
    }
}

/* Remove all dark mode styles */
.dark-mode {
    display: none;
}

/* Legal and Information Pages Styles */
.legal-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-color-wash) 0%, transparent 100%);
    min-height: 100vh;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
    border: 2px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.legal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.legal-header h1 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 8px var(--accent-color-wash);
    animation: fadeInDown 0.7s ease;
}

.legal-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 0.9;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
    border: 2px solid var(--card-border);
}

.legal-section-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--accent-color-wash);
}

.legal-section-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section-block h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.legal-section-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.legal-section-block h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    font-weight: 500;
}

.legal-section-block p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.legal-section-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.legal-section-block ul li {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    opacity: 0.9;
}

.legal-section-block ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
    line-height: 1;
}

.tool-disclaimer {
    background: var(--accent-color-wash);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-disclaimer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 139, 12, 0.1);
}

.tool-disclaimer h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.tool-disclaimer p {
    margin-bottom: 1rem;
}

.tool-disclaimer ul {
    margin-bottom: 0;
}

.tool-disclaimer ul li {
    font-size: 1rem;
}

.last-updated {
    text-align: center;
    color: var(--text-primary);
    font-size: 1rem;
    margin-top: 3rem;
    opacity: 0.8;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-color-wash);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
    }

    .legal-section-block h2 {
        font-size: 1.8rem;
    }

    .legal-section-block h3 {
        font-size: 1.3rem;
    }

    .legal-section-block p,
    .legal-section-block ul li {
        font-size: 1rem;
    }

    .tool-disclaimer {
        padding: 1.2rem;
    }

    .tool-disclaimer h3 {
        font-size: 1.2rem;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Countdown Timer Styles */
.tool-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin: 2rem 0;
    font-weight: 700;
    text-shadow: 0 2px 8px var(--accent-color-wash);
    animation: fadeInDown 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.countdown-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 139, 12, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.countdown-inputs {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.input-group {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.input-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 139, 12, 0.15);
    border-color: #F28B0C;
}

.input-group label {
    display: block;
    font-size: 1.1rem;
    color: #400101;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #400101;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #F28B0C;
    box-shadow: 0 0 0 3px rgba(242, 139, 12, 0.2);
}

.countdown-display {
    background: linear-gradient(135deg, #400101 0%, #2d0000 100%);
    padding: 2rem;
    border-radius: 16px;
    color: #fff;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(64, 1, 1, 0.2);
}

.countdown-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

#current-event {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.timer-unit:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.timer-unit .value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timer-unit .label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.countdown-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.countdown-actions button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #400101;
    color: #fff;
}

.countdown-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(64, 1, 1, 0.3);
}

@media (max-width: 768px) {
    .countdown-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
    }

    .timer-unit .value {
        font-size: 2rem;
    }

    .countdown-actions {
        flex-direction: column;
    }

    .countdown-actions button {
        width: 100%;
    }
}

/* Tool Info Section Styles */
.tool-info-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.tool-info-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tool-info-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.info-section {
    margin-bottom: 3rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-section h3 {
    font-size: 1.8rem;
    color: #F28B0C;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #F28B0C;
    padding-bottom: 0.5rem;
}

.info-section h4 {
    font-size: 1.4rem;
    color: #F28B0C;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.step {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step ul {
    list-style: none;
    padding-left: 1rem;
}

.step ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.2rem;
}

.step ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.use-case {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.use-case ul {
    list-style: none;
    padding-left: 0;
}

.use-case ul li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-section h3 {
    color: white;
    border-bottom-color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.related-tools {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.related-tools a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.related-tools a:hover {
    opacity: 0.8;
}

/* Dark mode adjustments */
.dark-mode .info-section {
    background: var(--dark-card-bg);
}

.dark-mode .step,
.dark-mode .use-case {
    background: var(--dark-bg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tool-info-content h2 {
        font-size: 2rem;
    }

    .info-section {
        padding: 1.5rem;
    }

    .usage-steps,
    .use-cases {
        grid-template-columns: 1fr;
    }
}

/* FAQ CTA Button Styles */
.faq-cta .cta-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(242, 139, 12, 0.2);
    margin-bottom: 15px;
}

.faq-cta .cta-button:hover {
    background: #e07d00;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(242, 139, 12, 0.3);
}

.faq-cta .cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(242, 139, 12, 0.2);
}

/* Dark mode adjustments */
.dark-mode .faq-cta .cta-button {
    background: var(--primary-color);
    box-shadow: 0 4px 6px rgba(242, 139, 12, 0.3);
}

.dark-mode .faq-cta .cta-button:hover {
    background: #e07d00;
    box-shadow: 0 6px 8px rgba(242, 139, 12, 0.4);
}

/* About Page Styles */
.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-color-wash) 0%, transparent 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 2px 8px var(--accent-color-wash);
}

.about-section-block {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 6px 24px 0 rgba(140, 39, 3, 0.10), 0 1.5px 4px 0 var(--shadow-color);
    border: 2.5px solid var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(242, 139, 12, 0.15);
}

.about-section-block h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color-wash);
}

.about-section-block p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.commitment-list {
    background: var(--accent-color-wash);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.commitment-list ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.commitment-list li {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--accent-color-wash);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-block:hover {
    transform: translateX(10px);
}

.feature-block h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-block ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.feature-block li {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-block li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tool-item {
    background: var(--accent-color-wash);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-5px);
}

.tool-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tool-item p {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.tools-note {
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 2rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.commitment-item {
    background: var(--accent-color-wash);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
}

.commitment-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.commitment-item ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.commitment-item li {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.commitment-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.community-links {
    background: var(--accent-color-wash);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.community-links p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.community-motto {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 2rem 0;
}

.last-updated {
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-color-wash);
}

@media (max-width: 768px) {
    .about-content h1 {
        font-size: 2rem;
    }

    .about-section-block {
        padding: 1.5rem;
    }

    .about-section-block h2 {
        font-size: 1.5rem;
    }

    .feature-block,
    .commitment-item,
    .tool-item {
        padding: 1.2rem;
    }

    .tools-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}

/* Terms of Service Styles */
.terms-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--background-primary);
    border-radius: 8px;
    box-shadow: 0 2px 4px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-color);
}

.terms-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color-wash);
}

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.terms-section ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section ul li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}

.terms-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.key-points,
.key-features,
.availability,
.limitations,
.permitted,
.prohibited {
    background: var(--accent-color-wash);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.key-points p,
.key-features p,
.availability p,
.limitations p,
.permitted p,
.prohibited p {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.note {
    font-style: italic;
    color: var(--text-secondary);
    padding: 1rem;
    background: var(--accent-color-wash);
    border-left: 4px solid var(--primary-color);
    margin: 1rem 0;
}

.last-updated {
    text-align: right;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-color-wash);
}

@media (max-width: 768px) {
    .terms-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .terms-section h2 {
        font-size: 1.3rem;
    }

    .key-points,
    .key-features,
    .availability,
    .limitations,
    .permitted,
    .prohibited {
        padding: 1rem;
    }
}

/* Enhanced Age Calculator Info Section Styles */
.tool-info-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-color-wash) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.tool-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.tool-info-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.tool-info-content h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 0 2px 8px var(--accent-color-wash);
    animation: fadeInDown 0.7s ease;
}

.info-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(242, 139, 12, 0.2);
}

.info-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color-wash);
    position: relative;
}

.info-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--primary-color);
}

.info-section h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.feature-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: var(--accent-color-wash);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(242, 139, 12, 0.1);
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
}

.step h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step ul {
    list-style: none;
    padding-left: 0;
}

.step ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-primary);
    line-height: 1.6;
}

.step ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.use-case {
    background: var(--accent-color-wash);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(242, 139, 12, 0.1);
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
}

.use-case h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.use-case ul {
    list-style: none;
    padding-left: 0;
}

.use-case ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-primary);
    line-height: 1.6;
}

.use-case ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Enhanced FAQ Section Styles */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--accent-color-wash) 0%, transparent 100%);
    position: relative;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.faq-content h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
    text-shadow: 0 2px 8px var(--accent-color-wash);
    animation: fadeInDown 0.7s ease;
}

.faq-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.faq-category {
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
}

.faq-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(242, 139, 12, 0.2);
}

.faq-category h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color-wash);
    position: relative;
}

.faq-category h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--primary-color);
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 2px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
}

.faq-question {
    padding: 2rem;
    background-color: var(--accent-color-wash);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(242, 139, 12, 0.1);
}

.faq-question h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.toggle-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(242, 139, 12, 0.2);
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.faq-answer ul {
    list-style: none;
    padding-left: 1.2rem;
    margin-bottom: 1.2rem;
}

.faq-answer ul li {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.1rem;
}

.faq-answer ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
    line-height: 1;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.2);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.faq-cta p {
    color: white;
    font-size: 1.6rem;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .tool-info-section,
    .faq-section {
        padding: 3rem 0;
    }

    .tool-info-content h2,
    .faq-content h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .info-section,
    .faq-category {
        padding: 1.5rem;
    }

    .info-section h3,
    .faq-category h3 {
        font-size: 1.6rem;
    }

    .step,
    .use-case {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .faq-question h4 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }

    .faq-cta {
        padding: 2rem;
        margin-top: 2rem;
    }

    .faq-cta p {
        font-size: 1.3rem;
    }
}

/* Age Calculator Features Grid Styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 1rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(242, 139, 12, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.feature-card h4::before {
    content: '✨';
    font-size: 1.4rem;
    color: var(--primary-color);
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card ul li {
    color: var(--text-primary);
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--accent-color-wash);
}

.feature-card ul li:last-child {
    border-bottom: none;
}

.feature-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover ul li::before {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h4 {
        font-size: 1.2rem;
    }

    .feature-card ul li {
        font-size: 1rem;
        padding: 0.6rem 0;
        padding-left: 1.5rem;
    }
}

/* Age Calculator Info Section Styles */
.info-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
    border: 2px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.info-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.info-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2.5rem;
    width: 2px;
    background: var(--accent-color-wash);
    z-index: 1;
}

.step {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(242, 139, 12, 0.2);
    flex-shrink: 0;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.step-content {
    background: var(--accent-color-wash);
    padding: 2rem;
    border-radius: 16px;
    flex-grow: 1;
    box-shadow: 0 4px 20px rgba(242, 139, 12, 0.1);
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(242, 139, 12, 0.15);
}

.step-content h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.step-content ul li {
    color: var(--text-primary);
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.step-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.step-content:hover ul li::before {
    transform: translateX(5px);
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .info-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .info-section h3 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .steps-container::before {
        left: 1.75rem;
    }

    .step {
        gap: 1.5rem;
    }

    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .step-content h4 {
        font-size: 1.2rem;
    }

    .step-content p,
    .step-content ul li {
        font-size: 1rem;
    }
}

/* Practical Uses Section Styles */
.uses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.use-card {
    background: var(--accent-color-wash);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(242, 139, 12, 0.1);
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
}

.use-card:hover::before {
    opacity: 1;
}

.use-card h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.use-card h4::before {
    content: '🎯';
    font-size: 1.4rem;
}

.use-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-card ul li {
    color: var(--text-primary);
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(242, 139, 12, 0.1);
    transition: all 0.3s ease;
}

.use-card ul li:last-child {
    border-bottom: none;
}

.use-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.use-card:hover ul li::before {
    transform: scale(1.2);
}

.use-card:hover ul li {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .uses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .use-card {
        padding: 1.5rem;
    }

    .use-card h4 {
        font-size: 1.2rem;
    }

    .use-card ul li {
        font-size: 1rem;
        padding: 0.6rem 0;
        padding-left: 1.5rem;
    }
}

/* Standout Features Section Styles */
.standout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.standout-item {
    background: var(--accent-color-wash);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(242, 139, 12, 0.1);
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.standout-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.standout-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
}

.standout-item:hover::before {
    opacity: 1;
}

.check-icon {
    font-size: 1.8rem;
    background: white;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(242, 139, 12, 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.standout-item:hover .check-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(242, 139, 12, 0.3);
}

.standout-item div {
    flex-grow: 1;
}

.standout-item h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.standout-item p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .standout-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .standout-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .check-icon {
        font-size: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .standout-item h4 {
        font-size: 1.2rem;
    }

    .standout-item p {
        font-size: 1rem;
    }
}

/* Mobile Compatibility Section Styles */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.device-item {
    background: var(--accent-color-wash);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(242, 139, 12, 0.1);
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.device-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 139, 12, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.device-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
}

.device-item:hover::before {
    opacity: 1;
}

.device-icon {
    font-size: 2rem;
    background: white;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(242, 139, 12, 0.2);
    transition: all 0.3s ease;
}

.device-item:hover .device-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(242, 139, 12, 0.3);
}

.device-item span:not(.device-icon) {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 500;
}

.compatibility-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--accent-color-wash);
    border-radius: 12px;
    border: 2px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.compatibility-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.5;
}

@media (max-width: 768px) {
    .devices-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .device-item {
        padding: 1.2rem;
    }

    .device-icon {
        font-size: 1.8rem;
        width: 3rem;
        height: 3rem;
    }

    .device-item span:not(.device-icon) {
        font-size: 1.1rem;
    }

    .compatibility-note {
        font-size: 1rem;
        padding: 1.2rem;
        margin-top: 1.5rem;
    }
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.cta-section h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.7s ease;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: transparent;
    color: white;
    border-color: white;
}

/* Support Section Styles */
.support-section {
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
    background: var(--accent-color-wash);
    border-radius: 16px;
    border: 2px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.5;
}

.support-section p {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.support-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.support-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.support-section a:hover {
    color: var(--secondary-color);
}

.support-section a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .cta-section h3 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }

    .support-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .support-section p {
        font-size: 1rem;
    }
}

/* FAQ Header Styles */
.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-color-wash) 0%, transparent 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
    border: 2px solid var(--card-border);
    animation: fadeInDown 0.7s ease;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.faq-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.faq-header h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 8px var(--accent-color-wash);
    line-height: 1.3;
}

.faq-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(242, 139, 12, 0.1);
    border: 1px solid var(--card-border);
}

@media (max-width: 768px) {
    .faq-header {
        padding: 1.5rem;
        margin: 1.5rem;
        margin-bottom: 3rem;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-header p {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* FAQ Categories Styles */
.faq-categories {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-category {
    margin-bottom: 3rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
}

.faq-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(242, 139, 12, 0.2);
}

.faq-category h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color-wash);
    position: relative;
}

.faq-category h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
}

.faq-question {
    padding: 1.5rem;
    background-color: var(--accent-color-wash);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(242, 139, 12, 0.1);
}

.faq-question h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-toggle::before {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}

.faq-toggle::after {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.faq-item.active .faq-toggle::before {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.faq-answer ul {
    list-style: none;
    padding-left: 1.2rem;
    margin-bottom: 1.2rem;
}

.faq-answer ul li {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.1rem;
}

.faq-answer ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .faq-categories {
        padding: 0 0.5rem;
    }

    .faq-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .faq-category h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-question h4 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.2rem;
    }

    .faq-answer p,
    .faq-answer ul li {
        font-size: 1rem;
    }
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
        padding-bottom: 1.2rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }
}

.tagline {
    text-align: center;
    color: var(--text-primary);
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 139, 12, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 139, 12, 0.4);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(242, 139, 12, 0.3);
}

@media (max-width: 768px) {
    .tagline {
        font-size: 1.2rem;
        margin: 1.5rem 0;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }
}

.privacy-section {
    padding: 6rem 2rem;
    background: #fff;
    position: relative;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--accent-color-wash);
    position: relative;
}

.privacy-header h1 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.privacy-header p {
    color: var(--text-primary);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.privacy-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(242, 139, 12, 0.15);
    border: 2px solid var(--card-border);
}

.privacy-section-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--accent-color-wash);
}

.privacy-section-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.privacy-section-block h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.privacy-section-block p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.privacy-section-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.privacy-section-block ul li {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
}

.privacy-section-block ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
    line-height: 1;
}

.privacy-note {
    background: var(--accent-color-wash);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid var(--card-border);
}

.privacy-note p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.last-updated {
    text-align: center;
    color: var(--text-primary);
    font-size: 1rem;
    margin-top: 3rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 4rem 1rem;
    }

    .privacy-header h1 {
        font-size: 2.2rem;
    }

    .privacy-header p {
        font-size: 1.1rem;
    }

    .privacy-content {
        padding: 2rem;
    }

    .privacy-section-block h2 {
        font-size: 1.8rem;
    }

    .privacy-section-block p,
    .privacy-section-block ul li {
        font-size: 1rem;
    }

    .privacy-note {
        padding: 1.2rem;
    }

    .privacy-note p {
        font-size: 1rem;
    }
}