body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8fafc;
    color: #222;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    transition: padding 0.3s ease;
}

.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.scrolled .navbar {
    padding: 0.7rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.logo-svg {
    display: block;
    width: 50px;
    height: 50px;
}

.logo span {
    display: inline-block;
}

.logo-text {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e90ff;
    margin-left: 0.5rem;
}

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

.navbar ul li a {
    color: #222;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 0.3rem;
    position: relative;
    z-index: 1;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #1e90ff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
    z-index: -1;
}

.navbar ul li a:hover, .navbar ul li a:focus {
    color: #1e90ff;
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.1);
}

.navbar ul li a:hover::after, .navbar ul li a:focus::after {
    width: 80%;
    opacity: 1;
}

.navbar ul li a.active {
    color: #1e90ff;
    background: rgba(30, 144, 255, 0.1);
    font-weight: 600;
}

.hero {
    background: linear-gradient(120deg, #e3f0fa 0%, #f8fafc 100%);
    padding: 4rem 0 3rem 0;
    text-align: center;
    box-shadow: 0 2px 16px rgba(30,144,255,0.04);
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444;
}

.cta-btn {
    display: inline-block;
    background: #1e90ff;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.7rem 2.2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(30,144,255,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    background: #0d6efd;
    box-shadow: 0 4px 16px rgba(30,144,255,0.13);
}

.generator-section {
    max-width: 500px;
    margin: 3rem auto 0 auto;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(30,144,255,0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
}

.generator-section h2 {
    color: #1e90ff;
    margin-bottom: 1.2rem;
}

#generatorForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
}

#generatorForm .form-group {
    width: 100%;
    position: relative;
}

#generatorForm label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e90ff;
    margin-bottom: 0.5rem;
}

#generatorForm .input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

#generatorForm select, 
#generatorForm input[type="number"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e3f0fa;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f8fafc;
    color: #444;
    transition: all 0.3s ease;
}

#generatorForm select:focus, 
#generatorForm input[type="number"]:focus {
    border-color: #1e90ff;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
    outline: none;
    background-color: #fff;
}

#generatorForm button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #1e90ff;
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.2);
    width: 100%;
    max-width: 250px;
    margin-top: 0.5rem;
}

#generatorForm button:hover {
    background: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 144, 255, 0.3);
}

#generatorForm button:active {
    transform: translateY(0);
}

.generate-icon {
    margin-right: 0.5rem;
}

#results {
    margin-top: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.generated-number {
    background: #e3f0fa;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    border: 2px solid rgba(30, 144, 255, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: #1e90ff;
    text-align: center;
    box-shadow: 0 2px 8px rgba(30, 144, 255, 0.05);
}

.generated-number:hover {
    background: rgba(30, 144, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.12);
}

.generated-number:active {
    transform: translateY(0);
}

.features-section {
    background: #f8fafc;
    padding: 3rem 0 2rem 0;
    text-align: center;
}

.features-section h2 {
    color: #1e90ff;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(30,144,255,0.07);
    padding: 1.5rem 2rem;
    min-width: 180px;
    font-size: 1.1rem;
    color: #1e90ff;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 500;
}

.how-section {
    background: #fff;
    max-width: 800px;
    margin: 2.5rem auto 0 auto;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(30,144,255,0.07);
    padding: 2.5rem 2rem;
    text-align: center;
}

.how-section h2 {
    color: #1e90ff;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Enhanced How It Works Steps */
.how-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.how-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.05);
}

.how-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.1);
}

.step-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin-top: 0.5rem;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #1e90ff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.step-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* How It Works Note */
.how-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    background: #e3f0fa;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    text-align: left;
}

.how-note svg {
    flex-shrink: 0;
}

.how-note p {
    color: #444;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .how-section {
        padding: 2rem 1.5rem;
    }
    
    .how-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1.2rem;
    }
    
    .step-icon {
        margin-bottom: 1rem;
        margin-top: 0;
    }
    
    .how-note {
        flex-direction: column;
        text-align: center;
    }
}

/* Specific styling for the FAQs section */

.faqs-section {
    max-width: 700px;
    margin: 2.5rem auto 2.5rem auto;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(30,144,255,0.07);
    padding: 2rem 1.5rem;
    text-align: left;
}

.faqs-section h2 {
    color: #1e90ff;
    margin-bottom: 1rem;
    text-align: center;
}

.faq {
    margin-bottom: 1.2rem;
}

.faq h3 {
    color: #1e90ff;
    margin-bottom: 0.3rem;
    font-size: 1.08rem;
}

.faq p {
    color: #444;
    margin: 0;
    font-size: 1rem;
}

footer {
    text-align: center;
    padding: 1.2rem 0;
    background: #1e90ff;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .features-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0.5rem;
    }
}

@media (max-width: 600px) {
    .cta-btn {
        width: 100%;
        padding: 0.7rem 0;
        font-size: 1rem;
    }
    .logo {
        font-size: 1.1rem;
    }
    .feature {
        font-size: 1rem;
        padding: 1rem 0.7rem;
    }
}

.mobile-gen-hero {
    max-width: 430px;
    margin: 4.5rem auto 0 auto;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(30,144,255,0.08);
    padding: 2.7rem 2rem 2.2rem 2rem;
    text-align: center;
    position: relative;
}

.mobile-gen-hero h1 {
    color: #1e90ff;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-subtitle {
    color: #444;
    font-size: 1.13rem;
    margin-bottom: 1.7rem;
    line-height: 1.5;
}

.mobile-gen-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.2rem;
}

.mobile-gen-form label {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.mobile-gen-form select {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #cce0ff;
    font-size: 1rem;
}

.mobile-gen-form button {
    background: #1e90ff;
    color: #fff;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.mobile-gen-form button:hover {
    background: #0d6efd;
}

.result {
    margin-top: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e90ff;
    word-break: break-all;
}

footer {
    text-align: center;
    padding: 1.2rem 0;
    background: #1e90ff;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 3rem;
    border-radius: 0 0 1.2rem 1.2rem;
}

@media (max-width: 600px) {
    .mobile-gen-hero {
        max-width: 98vw;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
}

.main-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(30,144,255,0.06);
    position: sticky;
    top: 0;
    z-index: 10;
}

.main-nav {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 2rem;
}

.logo-icon svg {
    display: block;
}

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

.main-nav ul li a {
    color: #222;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.2rem 0.5rem;
    border-radius: 0.3rem;
}

.main-nav ul li a:hover, .main-nav ul li a:focus {
    color: #fff;
    background: #1e90ff;
}

@media (max-width: 700px) {
    .main-nav {
        flex-direction: column;
        gap: 0.7rem;
        padding: 0.7rem 0.5rem;
    }
    .main-nav ul {
        gap: 1rem;
    }
    .logo, .footer-logo {
        font-size: 1.2rem;
    }
    .logo-svg {
        width: 28px;
        height: 28px;
    }
}

.mobiles-section {
    max-width: 500px;
    margin: 2.5rem auto 0 auto;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(30,144,255,0.07);
    padding: 2rem 1.5rem;
    text-align: center;
}

.mobiles-section h2 {
    color: #1e90ff;
    margin-bottom: 1rem;
}

.mobiles-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 1.08rem;
    color: #444;
}

.categories-section {
    max-width: 700px;
    margin: 2.5rem auto 0 auto;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(30,144,255,0.07);
    padding: 2rem 1.5rem;
    text-align: center;
}

.categories-section h2 {
    color: #1e90ff;
    margin-bottom: 1rem;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.category-card {
    background: #e3f0fa;
    color: #1e90ff;
    border-radius: 0.7rem;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    font-size: 1.05rem;
    box-shadow: 0 1px 4px rgba(30,144,255,0.06);
}

.contact-section {
    max-width: 500px;
    margin: 2.5rem auto 0 auto;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(30,144,255,0.07);
    padding: 2rem 1.5rem;
    text-align: center;
}

.contact-section h2 {
    color: #1e90ff;
    margin-bottom: 1rem;
}

.contact-section p {
    color: #444;
    margin-bottom: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.contact-form input, .contact-form textarea {
    width: 90%;
    max-width: 350px;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #cce0ff;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
}

.contact-form textarea {
    min-height: 80px;
}

.contact-form button {
    background: #1e90ff;
    color: #fff;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #0d6efd;
}

.tagline {
    display: inline-block;
    background: #e3f0fa;
    color: #1e90ff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.7rem;
    padding: 0.3rem 1.1rem;
    margin-bottom: 1.1rem;
    letter-spacing: 0.5px;
}

.animated-shape {
    animation: floatShape 6s ease-in-out infinite alternate;
}

@keyframes floatShape {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(30px) scale(1.04); }
}

.about-section, .privacy-section, .terms-section {
    max-width: 700px;
    margin: 2.5rem auto 0 auto;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(30,144,255,0.07);
    padding: 2rem 1.5rem;
    text-align: left;
}

.about-section h2, .privacy-section h2, .terms-section h2 {
    color: #1e90ff;
    margin-bottom: 1rem;
    text-align: center;
}

.terms-section ul {
    color: #444;
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 1.2rem 0 0 1.2rem;
}

.site-footer {
    background: linear-gradient(135deg, #1e90ff 0%, #0d6efd 100%);
    color: #fff;
    padding: 3.5rem 0 0 0;
    margin-top: 3rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 2rem 2rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-svg {
    display: block;
    width: 50px;
    height: 50px;
}

.footer-logo span {
    display: inline-block;
    color: #fff;
}

.footer-logo .logo-text {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-left: 0.5rem;
}

.footer-logo .logo-svg {
    display: block;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 1.2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.5);
}

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

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links li a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 0;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links li a::before {
    content: '›';
    position: absolute;
    left: -10px;
    top: 0;
    opacity: 0;
    transition: all 0.2s ease;
}

.footer-links li a:hover::before {
    opacity: 1;
    left: -5px;
}

.contact-label {
    font-weight: 600;
}

.footer-col p, .footer-col a {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin: 0 0 0.8rem 0;
    line-height: 1.6;
}

.footer-col a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    background: rgba(0,0,0,0.05);
    padding: 1.2rem 2rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.heart {
    color: #ff5e5e;
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .footer-content {
        padding: 0 1rem 2rem 1rem;
        gap: 2rem;
    }
    .footer-col {
        min-width: 45%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem 2rem 1rem;
    }
    .footer-col {
        width: 100%;
        margin-bottom: 1rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}

.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e3f0fa;
    padding: 0.7rem 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #1e90ff;
    font-size: 1.08rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.faq-question[aria-expanded="true"] {
    color: #0d6efd;
}

.faq-toggle {
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: transform 0.2s;
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #444;
    font-size: 1rem;
    transition: max-height 0.3s cubic-bezier(.4,0,.2,1), padding 0.3s;
    padding: 0 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 200px;
    padding: 0.7rem 0 0.5rem 0;
}

@media (max-width: 600px) {
    .faq-accordion {
        padding: 0 0.2rem;
    }
    .faq-question {
        font-size: 1rem;
    }
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-link:hover {
    text-decoration: none;
}

@media (max-width: 992px) {
    .navbar {
        padding: 1rem 1rem;
    }
    .scrolled .navbar {
        padding: 0.7rem 1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 0.7rem 1rem;
    }
    .navbar ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.5rem 0;
    }
    .logo-link {
        margin-bottom: 0.5rem;
    }
    .scrolled .navbar {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .navbar ul {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    .navbar ul li a {
        font-size: 0.95rem;
        padding: 0.2rem 0.4rem;
    }
    .logo {
        font-size: 1.3rem;
    }
    .logo-svg {
        width: 28px;
        height: 28px;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 100;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #1e90ff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 10px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-menu-toggle.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-toggle.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        position: fixed;
        background: white;
        height: 100vh;
        width: 100%;
        top: 0;
        right: -100%;
        text-align: center;
        padding: 80px 0 30px 0;
        transition: 0.3s ease-in-out;
        flex-direction: column;
        z-index: 90;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .navbar {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        position: relative;
    }
    
    .logo-link {
        margin-bottom: 0;
        z-index: 100;
    }
}

body.no-scroll {
    overflow: hidden;
}

/* ======= About Page Styles ======= */
/* About Intro Section */
.about-intro {
    padding: 3rem 0;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

.rounded-image {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.subtitle {
    display: inline-block;
    background: #e3f0fa;
    color: #1e90ff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: 2rem;
    color: #1e90ff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e3f0fa 100%);
    padding: 4rem 0;
    margin: 3rem 0;
}

.mission-content h2 {
    text-align: center;
    font-size: 2rem;
    color: #1e90ff;
    margin-bottom: 2rem;
}

.mission-statement {
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: #333;
    font-style: italic;
    position: relative;
    padding: 0 2rem;
}

.mission-statement::before,
.mission-statement::after {
    font-size: 4rem;
    color: #1e90ff;
    opacity: 0.3;
    position: absolute;
    line-height: 0;
}

.mission-statement::before {
    content: "\201C";
    top: 1rem;
    left: 0;
}

.mission-statement::after {
    content: "\201D";
    bottom: -0.5rem;
    right: 0;
}

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

.value-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #1e90ff;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #1e90ff;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e3f0fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #1e90ff;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    max-width: 280px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #e3f0fa 0%, #f8fafc 100%);
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #1e90ff;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
    position: relative;
    padding-top: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-size: 3rem;
    color: #1e90ff;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 1.05rem;
    color: #1e90ff;
    margin-bottom: 0.2rem;
}

.author-details p {
    font-size: 0.9rem;
    color: #666;
}

/* ======= Contact Page Styles ======= */
/* Contact Main Section */
.contact-main {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Enhanced Contact Form Styles */
.contact-form-container {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(30, 144, 255, 0.08);
    transition: transform 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-5px);
}

.contact-form-container h2 {
    font-size: 1.8rem;
    color: #1e90ff;
    margin-bottom: 0.8rem;
}

.form-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    width: 100%;
    position: relative;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e90ff;
    margin-bottom: 0.5rem;
}

.contact-form .input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e3f0fa;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #f8fafc;
    color: #444;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #1e90ff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
    background-color: #fff;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-group label {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-icon {
    display: inline-flex;
    align-items: center;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #1e90ff;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.2);
    max-width: 100%;
    width: auto;
    align-self: flex-start;
}

.submit-button:hover {
    background: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 144, 255, 0.3);
}

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

.send-icon {
    margin-right: 0.5rem;
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-status.sending {
    display: block;
    background: #f0f7ff;
    color: #1e90ff;
    border: 1px solid #cce0ff;
}

.form-status.success {
    display: block;
    background: #e3f7e9;
    color: #1f8f4f;
    border: 1px solid #a5e9c0;
}

.form-status.error {
    display: block;
    background: #fee;
    color: #e32c1e;
    border: 1px solid #fcc;
}

/* Contact Grid Responsiveness */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container,
    .info-box, 
    .faq-box {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 1.8rem;
    }
    
    .contact-form label {
        font-size: 1rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.8rem;
    }
    
    .submit-button {
        width: 100%;
        padding: 0.9rem;
    }
    
    .info-box, 
    .faq-box {
        padding: 1.5rem;
    }
}

/* Professional Page Container */
.page-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.contact-main, .about-intro, .team-section {
  padding: 3rem 0;
}

/* Enhance existing container spacing */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Enhance page header styles */
.page-header {
  background: linear-gradient(120deg, #e3f0fa 0%, #f8fafc 100%);
  padding: 3.5rem 0 2.5rem 0;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-header h1 {
  font-size: 2.5rem;
  color: #1e90ff;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-container {
    margin: 2rem auto;
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-container {
    margin: 1.5rem auto;
    padding: 0 1rem;
  }
}

/* Enhanced CTA Section Styles */
.cta-section {
  background: linear-gradient(135deg, #e3f0fa 0%, #f8fafc 100%);
  border-radius: 12px;
  padding: 3rem 2rem;
  margin: 3rem 0;
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.06);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-header h2 {
  font-size: 2rem;
  color: #1e90ff;
  margin: 0;
}

.cta-icon {
  color: #1e90ff;
}

.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.08);
}

.cta-feature span {
  font-weight: 500;
  color: #444;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #1e90ff;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #0d6efd;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(30, 144, 255, 0.3);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.cta-button:hover .btn-icon {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 2rem 1.5rem;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-header {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .cta-feature {
    width: 100%;
    padding: 0.8rem 1rem;
  }
  
  .cta-button {
    width: 100%;
    padding: 0.9rem 1.5rem;
  }
}

/* Benefits Section Styles */
.benefits-section {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e3f0fa 100%);
  margin: 3rem 0;
}

.benefits-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #1e90ff;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(30, 144, 255, 0.12);
}

.benefit-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.benefit-card h3 {
  font-size: 1.4rem;
  color: #1e90ff;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #444;
  line-height: 1.6;
  font-size: 1rem;
}

/* Key Features Section Styles */
.key-features-section {
  padding: 4rem 0;
  background: #fff;
  margin: 3rem 0;
}

.key-features-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #1e90ff;
  margin-bottom: 0.8rem;
}

.section-description {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.feature-card {
  background: #f8fafc;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 25px rgba(30, 144, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(30, 144, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(30, 144, 255, 0.1);
  border-color: rgba(30, 144, 255, 0.1);
}

.feature-icon {
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: rgba(30, 144, 255, 0.08);
  border-radius: 50%;
  margin-left: -0.5rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  color: #1e90ff;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

/* Trust Section Styles */
.trust-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #e3f0fa 0%, #f8fafc 100%);
  margin: 3rem 0;
  text-align: center;
}

.trust-section h2 {
  font-size: 2.2rem;
  color: #1e90ff;
  margin-bottom: 3rem;
}

.trust-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e90ff;
}

.stat-icon {
  margin: 0.5rem 0;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  gap: 0.8rem;
  box-shadow: 0 5px 15px rgba(30, 144, 255, 0.08);
  transition: transform 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-5px);
}

.trust-badge span {
  font-weight: 600;
  color: #444;
  white-space: nowrap;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .features-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
  }
  
  .trust-stats {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .key-features-section,
  .trust-section {
    padding: 3rem 0;
  }
  
  .features-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .trust-stats {
    gap: 2rem 3rem;
  }
  
  .stat-value {
    font-size: 2.2rem;
  }
  
  .trust-badges {
    gap: 1rem;
  }
  
  .trust-badge {
    padding: 0.8rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .feature-icon {
    width: 70px;
    height: 70px;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Examples Section Styles */
.examples-section {
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.examples-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #1e90ff;
  margin-bottom: 3rem;
}

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

.example-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 1.8rem;
  border-left: 4px solid #1e90ff;
  box-shadow: 0 5px 15px rgba(30, 144, 255, 0.05);
  transition: transform 0.3s ease;
}

.example-card:hover {
  transform: translateY(-5px);
}

.example-card h3 {
  font-size: 1.2rem;
  color: #1e90ff;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.example-card p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .examples-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
  
  .example-card {
    padding: 1.5rem;
  }
  
  .examples-section {
    padding: 2.5rem 0;
  }
} 