/* NW Auto Restoration - Standalone Website Styles */

/* 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: #333;
    background-color: #000;
    overflow-x: hidden;
}

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

/* Header Styles */
.site-header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: #3b82f6;
}

.logo .highlight {
    color: #3b82f6;
}

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

.main-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.main-nav a:hover {
    color: #3b82f6;
}

.header-cta {
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.header-cta:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95)), url('../images/hero-detailing.jpg');
    background-size: cover;
    background-position: center 25%;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.hero-badge span {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .highlight-blue {
    color: #3b82f6;
}

.hero-content .highlight-teal {
    color: #14b8a6;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e5e7eb;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
    justify-content: center;
    font-family: 'Inter';
}

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

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline {
    background: transparent;
    color: #14b8a6;
    border: 2px solid #14b8a6;
}

.btn-outline:hover {
    background: #14b8a6;
    color: black;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #111827;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: #1f2937;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #374151;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #1f2937 0%, #2d1b69 100%);
}

.service-card.premium {
    border: 2px solid #fbbf24;
    background: linear-gradient(135deg, #1f2937 0%, #451a03 100%);
}

.service-badge {
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.premium-badge {
    background: #fbbf24;
    color: black;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.service-card p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.service-duration {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-btn {
    width: 100%;
    margin-top: auto;
}

.featured-btn {
    background: #f59e0b;
}

.featured-btn:hover {
    background: #d97706;
}

.premium-btn {
    background: #fbbf24;
    color: black;
}

.premium-btn:hover {
    background: #f59e0b;
}


.featured .service-features li {
    display: none;
}

.featured .service-features li:nth-child(-n+5) {
    display: list-item;
}

.featured .see-more-btn {
    margin: 10px auto;
    display: block;
    padding: 8px 14px;
    font-size: 18;
    font-family: inter;
    text-align: center;
    background: transparent;
    color: #fff;
    border: 1px solid;
    border-radius: 6px;
    cursor: pointer;
}

/* What Makes Us Unique Section */
.unique-section {
    padding: 5rem 0;
    background: white;
    color: black;
}

.unique-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.unique-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.unique-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.highlight-blue {
    color: #3b82f6;
}

.unique-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
}

.stat-number.blue {
    color: #3b82f6;
}

.stat-number.green {
    color: #10b981;
}

.stat-number.purple {
    color: #8b5cf6;
}

.stat-label {
    color: #6b7280;
}

.owner-quote {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #3b82f6;
}

.quote-text {
    font-style: italic;
    color: #374151;
    margin-bottom: 0.5rem;
}

.quote-author {
    font-weight: 600;
    color: #3b82f6;
}

.unique-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    color: white;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-card.blue {
    background: #3b82f6;
}

.feature-card.green {
    background: #10b981;
}

.feature-card.purple {
    background: #8b5cf6;
}

.feature-card.orange {
    background: #f59e0b;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-card h4 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
}

/* Social Media Section */
.social-media {
    padding: 5rem 0;
    background: #374151;
}

.social-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.facebook-embed {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook-placeholder {
    text-align: center;
    color: #6b7280;
    padding: 2rem;
}

.facebook-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.facebook-note {
    font-size: 0.875rem;
    margin-top: 1rem;
}

.social-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-cta p {
    color: #d1d5db;
    margin-bottom: 2rem;
}

.social-features {
    list-style: none;
    margin-bottom: 2rem;
}

.social-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: white;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.reviews {
    background: #10b981;
}

.social-icon.professional {
    background: #8b5cf6;
}

.social-title {
    font-weight: 600;
}

.social-subtitle {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Quote Section */
.quote-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
}

.quote-section .section-header h2 {
    color: white;
}

.quote-section .section-header p {
    color: #e0e7ff;
}

.quote-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.8);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.quote-form-container h3 {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.form-subtitle {
    color: #cbd5e1;
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    background: #111827;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    font-size: 1.125rem;
    padding: 1rem;
}

.form-note {
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    background: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #3b82f6;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    color: #fbbf24;
}

.rating-text {
    color: #d1d5db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #6b7280;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #1f2937;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    color: #9ca3af;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: color 0.3s;
}

.close:hover {
    color: white;
}

.modal-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.modal-subtitle {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.modal-submit-btn {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s;
}

.back-to-top:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-top: 1px solid rgba(59, 130, 246, 0.3);
    }

    .main-nav.active {
        display: block;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .unique-grid,
    .social-content {
        grid-template-columns: 1fr;
    }

    .unique-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .unique-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .service-card,
    .quote-form-container,
    .modal-content {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {

    .site-header,
    .back-to-top,
    .modal {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        background: none;
        color: black;
        min-height: auto;
        padding: 2rem 0;
    }
}


/* Owner's Message Section */
.owner-message {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1f2937;
}

.owner-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.owner-image {
    text-align: center;
}

.owner-placeholder {
    background-image: url(../images/owner.webp);
    background-size: cover;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 4px solid #3b82f6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.owner-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.owner-placeholder p {
    color: #6b7280;
    font-weight: 600;
}

.owner-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.owner-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #1f2937;
}

.owner-text blockquote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 4px solid #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    padding: 2rem;
    border-radius: 0.5rem;
}

.owner-signature {
    margin-bottom: 2rem;
}

.signature-line {
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.signature-name {
    color: #6b7280;
    font-size: 0.875rem;
}

.owner-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.credential span:last-child {
    font-weight: 600;
    color: #374151;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.review-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.reviewer-name {
    font-weight: 600;
    color: #1f2937;
}

.review-date {
    color: #6b7280;
    font-size: 0.875rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.125rem;
}

.review-text {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-service {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.google-business {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.google-logo {
    font-size: 2rem;
    font-weight: bold;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.rating-count {
    color: #6b7280;
    font-size: 0.875rem;
}

.google-btn {
    background: #4285f4;
    color: white;
}

.google-btn:hover {
    background: #3367d6;
}

/* Enhanced Social Media Section */
.social-media {
    background: #374151;
}

.facebook-section {
    margin-bottom: 2rem;
}

.facebook-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.facebook-header p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.facebook-embed {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook-placeholder {
    text-align: center;
    color: #6b7280;
    padding: 2rem;
}

.facebook-placeholder h4 {
    margin-bottom: 1rem;
    color: #374151;
}

.facebook-link {
    color: #1877f2;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.facebook-link:hover {
    text-decoration: underline;
}

.social-icon.google {
    background: #4285f4;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-buttons .btn {
    flex: 1;
    min-width: 200px;
    font-size: 16px;
    padding: 15px 20px;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .owner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .owner-placeholder {
        width: 200px;
        height: 200px;
    }

    .owner-icon {
        font-size: 3rem;
    }

    .owner-text h2 {
        font-size: 2rem;
    }

    .owner-text blockquote {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .owner-credentials {
        justify-content: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-rating {
        flex-direction: column;
        gap: 1rem;
    }

    .social-buttons {
        flex-direction: column;
    }

    .social-buttons .btn {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .owner-placeholder {
        width: 150px;
        height: 150px;
    }

    .owner-icon {
        font-size: 2.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .google-business {
        padding: 1.5rem;
    }
}

@media only screen and (max-width: 450px) {
    .logo {
        width: 40%;
        font-size: 1.2rem;
        line-height: 1.2em;
    }

    .mobile-menu-toggle {

        background: #3c7bf0;
        padding: 5px 10px;
        border-radius: 5px;
    }

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

    .section-header h2 {
        font-size: 1.6rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .btn {
        font-size: 1rem;
    }

    .unique-content h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .unique-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .unique-description {
        text-align: center;
        font-size: 1rem;
    }

    .owner-text h2 {
        font-size: 1.6rem;
    }

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

    .facebook-header h3 {

        font-size: 1.1rem;
    }

    .social-cta h3 {
        font-size: 1.1rem;
    }

    .quote-form-container h3 {

        font-size: 1.1rem;
    }
}