/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #fafafa;
}

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

/* Header and Navigation */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e53e3e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #c53030;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #e53e3e;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e53e3e;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #e53e3e;
    color: white;
}

.btn-primary:hover {
    background-color: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.btn-secondary {
    background-color: #f7fafc;
    color: #e53e3e;
    border: 2px solid #e53e3e;
}

.btn-secondary:hover {
    background-color: #e53e3e;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fef5e7 0%, #fed7aa 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.hero-text {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-top: 2rem;
}

/* Intro Section */
.intro {
    padding: 4rem 0;
    background-color: white;
}

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

.intro-text {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #fef5e7 0%, #fed7aa 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: white;
}

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

.service-card {
    background-color: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #e53e3e;
}

.service-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background-color: white;
}

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

.pricing-card {
    background-color: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.pricing-header {
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e53e3e;
}

.pricing-price-alt {
    font-size: 1rem;
    color: #718096;
    margin-top: 0.25rem;
}

.pricing-description {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pricing-note {
    background-color: #fef5e7;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #744210;
}

/* FAQ Section - Home Page */
.faq-home {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.faq-home .faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 3rem;
}

.faq-home .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-home .faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.faq-home .faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.faq-home .faq-answer {
    color: #4a5568;
    line-height: 1.6;
}

/* FAQ Section - Pricing Page */
.faq {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.faq .faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 3rem;
}

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

.faq .faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.faq .faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.faq .faq-answer {
    color: #4a5568;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

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

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #4a5568;
}

.contact-item a {
    color: #e53e3e;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #2d3748;
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-link {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(255, 255, 255, 0.9);
    color: #e53e3e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid #e53e3e;
    white-space: nowrap;
}

/* Trust Features */
.trust-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

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

.feature-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a5568;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .services-grid,
    .pricing-grid,
    .faq-grid,
    .faq-home .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 5rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 5rem;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .trust-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-feature {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .services,
    .pricing,
    .faq,
    .contact {
        padding: 2rem 0;
    }
    
    .service-card,
    .pricing-card,
    .faq-item {
        padding: 1.5rem;
    }
}

/* Blog Styles - Clean Modern Design */
.blog-main {
    background: #f9f9f9;
    min-height: 100vh;
    padding: 60px 0;
    margin: 0;
    color: #333;
}

.blog-container {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.75;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.blog-header {
    padding: 32px 24px 0;
}

.blog-container h1 {
    font-size: 2.5em;
    margin-bottom: 0.2em;
    color: #111;
}

.blog-intro {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

.articles-list {
    padding: 0 24px;
}

.article-preview {
    margin: 2em 0;
}

.article-preview h2 {
    font-size: 1.4em;
    margin-top: 2em;
    margin-bottom: 0.5em;
    color: #111;
}

.article-preview h2:first-of-type {
    margin-top: 0;
}

.article-preview h2 a {
    color: #0077cc;
    text-decoration: none;
}

.article-preview h2 a:hover {
    text-decoration: underline;
}

.article-meta {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 1em;
}

.article-preview p {
    font-size: 1.1em;
    margin: 1.5em 0;
    color: #333;
}

.blog-footer {
    font-size: 0.9em;
    color: #777;
    padding: 24px;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 2em;
}

.blog-container a {
    color: #0077cc;
    text-decoration: none;
}

.blog-container a:hover {
    text-decoration: underline;
}

.blog-container hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 3em 0;
}

.article-content {
    padding: 0 24px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.75;
    color: #333;
}

.article-content h2 {
    font-size: 1.4em;
    margin-top: 2em;
    color: #111;
}

.article-content h2:first-of-type {
    margin-top: 0;
}

.article-content p {
    font-size: 1.1em;
    margin: 1.5em 0;
}

.article-content ul {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.article-content li {
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

.article-content strong {
    color: #111;
    font-weight: 600;
}

.article-content blockquote {
    border-left: 4px solid #ddd;
    margin: 2em 0;
    padding-left: 1em;
    font-style: italic;
    color: #555;
}

.article-content a {
    color: #0077cc;
    text-decoration: none;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-main {
        padding: 40px 0;
    }
    
    .blog-container {
        margin: 0 16px;
        padding: 0 16px;
    }
    
    .blog-header {
        padding: 24px 16px 0;
    }
    
    .articles-list {
        padding: 0 16px;
    }
    
    .blog-container h1 {
        font-size: 2em;
    }
    
    .article-preview h2 {
        font-size: 1.3em;
    }
    
    .article-preview p {
        font-size: 1em;
    }
    
    .article-content {
        padding: 0 16px;
    }
    
    .article-content h2 {
        font-size: 1.3em;
    }
    
    .article-content p {
        font-size: 1em;
    }
}

/* Blog Post Tags/Categories */
.blog-post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.blog-post-tag {
    background-color: #f7fafc;
    color: #e53e3e;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

/* Blog Header Features */
.blog-header-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.blog-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    border: 1px solid rgba(229, 62, 62, 0.2);
}

.blog-feature-icon {
    font-size: 1.25rem;
}

.blog-feature-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e53e3e;
}

/* Mobile Responsiveness for Blog Header */
@media (max-width: 768px) {
    .blog-header-features {
        gap: 1rem;
    }
    
    .blog-feature {
        padding: 0.5rem 1rem;
    }
    
    .blog-feature-text {
        font-size: 0.8rem;
    }
}

/* Checklists */
.checklist {
    margin: 1.5rem 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #48bb78;
}

.checklist-icon {
    font-size: 1.125rem;
    color: #48bb78;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checklist-text {
    color: #2d3748;
    line-height: 1.6;
}

/* Warning Lists */
.warning-list {
    margin: 1.5rem 0;
}

.warning-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #fef5e7;
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
}

.warning-icon {
    font-size: 1.125rem;
    color: #e53e3e;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.warning-text {
    color: #744210;
    line-height: 1.6;
}

/* Password Example */
.password-example {
    background-color: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin: 1rem 0;
}

.password-example p {
    margin: 0;
}

/* Blog Post CTA */
.blog-post-cta {
    background: linear-gradient(135deg, #fef5e7 0%, #fed7aa 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0 0 0;
    border: 1px solid #fed7aa;
}

.blog-post-cta p {
    margin: 0;
    color: #744210;
    font-weight: 500;
}

.blog-post-cta a {
    color: #e53e3e;
    text-decoration: none;
    font-weight: 600;
}

.blog-post-cta a:hover {
    text-decoration: underline;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0 0 0;
    border: 1px solid #feb2b2;
}

.emergency-contact h3 {
    color: #c53030;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.emergency-contact p {
    margin: 0;
    color: #742a2a;
    font-weight: 500;
}

/* Mobile Responsiveness for New Blog Elements */
@media (max-width: 768px) {
    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .checklist-item,
    .warning-item {
        padding: 0.5rem;
    }
    
    .blog-post-cta,
    .emergency-contact {
        padding: 1rem;
    }
}

/* Individual Article Page - Medium Style */
.article {
    padding: 2rem 0 4rem 0;
    background-color: white;
}

.article-header {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.article-header .article-meta {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.article-header .article-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.article-header .article-author {
    color: #718096;
    font-size: 1rem;
}

.article-content {
    padding: 0 24px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.75;
    color: #333;
}

.article-content h2 {
    font-size: 1.4em;
    margin-top: 2em;
    color: #111;
}

.article-content h2:first-of-type {
    margin-top: 0;
}

.article-content p {
    font-size: 1.1em;
    margin: 1.5em 0;
}

.article-content ul {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.article-content li {
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

.article-content strong {
    color: #111;
    font-weight: 600;
}

.article-content blockquote {
    border-left: 4px solid #ddd;
    margin: 2em 0;
    padding-left: 1em;
    font-style: italic;
    color: #555;
}

.article-content a {
    color: #0077cc;
    text-decoration: none;
}

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

.article-cta {
    background-color: #f7fafc;
    border-left: 4px solid #e53e3e;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 8px 8px 0;
}

.article-cta p {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.article-cta a {
    color: #e53e3e;
    text-decoration: none;
    font-weight: 600;
}

.article-cta a:hover {
    text-decoration: underline;
}

.article-footer {
    max-width: 700px;
    margin: 3rem auto 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.back-to-blog {
    color: #718096;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.back-to-blog:hover {
    color: #e53e3e;
}

/* Mobile Responsiveness for Articles */
@media (max-width: 768px) {
    .article {
        padding: 1rem 0 3rem 0;
    }
    
    .article-header .article-title {
        font-size: 2.25rem;
        padding: 0 1rem;
    }
    
    .article-subtitle {
        font-size: 1.125rem;
        padding: 0 1rem;
    }
    
    .article-content {
        padding: 0 1rem;
        font-size: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-cta {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
}

.blog-container blockquote {
    font-style: italic;
    margin: 2em 0;
    padding-left: 1em;
    border-left: 3px solid #ccc;
    color: #555;
}

.back-link {
    text-align: center;
    margin-top: 3em;
}

.back-link a {
    color: #777;
    text-decoration: none;
    font-size: 0.9em;
}

.back-link a:hover {
    color: #e53e3e;
    text-decoration: underline;
} 