.static-page {
    min-height: 100vh;
    background: #fafafa;
    padding: 60px 0;
}

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

.static-title {
    font-size: 2.5rem;  /* More reasonable size */
    font-weight: 800;
    color: #111827;  /* Darker for contrast */
    margin-bottom: 16px;
    line-height: 1.3;
}

.static-subtitle {
    font-size: 1.25rem;
    color: #374151;  /* Better contrast */
    margin-bottom: 32px;
    line-height: 1.5;
}

.static-date {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.static-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #e5e7eb;
}

.static-content section {
    margin-bottom: 48px;
}

.static-content section:last-child {
    margin-bottom: 0;
}

.static-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.static-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin: 24px 0 12px;
}

.static-content p {
    font-size: 1.1rem;  /* Slightly larger */
    color: #374151;  /* Better contrast */
    line-height: 1.8;
    margin-bottom: 20px;
}

.static-content ul,
.static-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.static-content li {
    font-size: 1.1rem;  /* Slightly larger */
    color: #374151;  /* Better contrast */
    line-height: 1.8;
    margin-bottom: 12px;  /* Better spacing */
}

.static-content a {
    color: #0891B2;  /* Better contrast color */
    text-decoration: underline;
    font-weight: 600;
}

.static-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .static-page {
        padding: 30px 0;
    }
    
    .static-container {
        padding: 0 16px;  /* Better mobile padding */
    }
    
    .static-title {
        font-size: 1.75rem;  /* Better mobile size */
        margin-bottom: 12px;
    }
    
    .static-subtitle {
        font-size: 1.125rem;
        margin-bottom: 24px;
    }
    
    .static-content {
        padding: 20px;  /* Consistent padding */
        border-radius: 8px;  /* Softer corners on mobile */
    }
    
    .static-content h2 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
    
    .static-content h3 {
        font-size: 1.2rem;
    }
    
    .static-content p,
    .static-content li {
        font-size: 1rem;  /* Standard 16px on mobile */
        line-height: 1.7;
    }
    
    /* Better link touch targets */
    .static-content a {
        display: inline-block;
        padding: 2px 0;
    }
}

/* Contact Page Specific Styles */
.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

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

.contact-form {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #7A9D96;
    box-shadow: 0 0 0 3px rgba(122, 157, 150, 0.1);
}

textarea.form-control {
    resize: vertical;
    font-family: inherit;
}

.btn-submit {
    background: #1a1a1a;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.info-card {
    background: #f8fafc;
    border-left: 3px solid #7A9D96;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

.info-card a {
    color: #7A9D96;
    text-decoration: none;
    font-weight: 500;
}

.info-card a:hover {
    text-decoration: underline;
}

/* About Page Specific Styles */
.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.value-prop {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease;
}

.value-prop:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.value-prop h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.stat {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #7A9D96;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-contact {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #2d2d2d;
    transform: translateY(-2px);
}

/* How It Works Page Specific Styles */
.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.step-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7A9D96 0%, #557A74 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.feature {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #7A9D96;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.cta-section {
    text-align: center;
 /*   margin: 48px 0;*/
/*    padding: 32px;*/
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    /*border-radius: 12px;*/
}

.btn-cta {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #2d2d2d;
    transform: translateY(-2px);
}

/* Sitemap Page Specific Styles */
.sitemap-page {
    min-height: 100vh;
    background: #fafafa;
    padding: 60px 0;
}

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

.sitemap-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.sitemap-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 40px;
}

.sitemap-section {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid #e5e7eb;
}

.sitemap-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.sitemap-list li:last-child {
    border-bottom: none;
}

.sitemap-list a {
    color: #4b5563;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.sitemap-list a:hover {
    color: #7A9D96;
}

.sitemap-count {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-left: 8px;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.sitemap-generator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.2s;
    border: 1px solid #e5e7eb;
}

.sitemap-generator:hover {
    background: #f3f4f6;
    color: #1a1a1a;
    transform: translateX(4px);
    border-color: #7A9D96;
}

.sitemap-icon {
    font-size: 1.25rem;
}

/* Saved Names Page Specific Styles */
.saved-names-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 60px 20px;
    margin: 0 calc(-50vw + 50%);
    width: 100vw;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 18px;
    color: #6b7280;
}

.saved-count {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.count-text {
    font-size: 18px;
    color: #4b5563;
}

.count-number {
    font-weight: 600;
    color: #1a1a1a;
}

.clear-all-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.clear-all-btn:hover {
    background: #dc2626;
}

.categories-section {
    margin-bottom: 40px;
}

.category-group {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.category-header {
    /* display: flex; */
    /* justify-content: space-between; */
    /* align-items: center; */
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.category-count {
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #6b7280;
}

.names-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.name-card {
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    transition: all 0.2s;
}

.name-card:hover {
    background: white;
    border-color: #d1d5db;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.name-text {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.name-actions {
    display: flex;
    gap: 8px;
}

.name-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    transition: opacity 0.2s;
}

.name-btn:hover {
    opacity: 0.7;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-title {
    font-size: 24px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 10px;
}

.empty-text {
    font-size: 16px;
    margin-bottom: 20px;
}

.browse-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

.browse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-tab {
    background: white;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.filter-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.filter-tab:hover:not(.active) {
    background: #f9fafb;
    border-color: #d1d5db;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .names-grid {
        grid-template-columns: 1fr;
    }
    
    .saved-count {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .sitemap-page {
        padding: 40px 0;
    }
    
    .sitemap-title {
        font-size: 2rem;
    }
    
    .sitemap-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
    
    .sitemap-generator {
        padding: 10px 14px;
    }
}