/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Links */
a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

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

.btn-primary:hover {
    background-color: #2980b9;
    color: white;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    color: white;
}

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

.btn-outline:hover {
    background-color: #3498db;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: white;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    min-width: auto;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-link {
    color: #555;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-wrapper.reverse {
    direction: rtl;
}

.content-wrapper.reverse > * {
    direction: ltr;
}

.text-content h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

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

.benefits-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.image-content img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Company Story */
.company-story {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Mission and Values */
.mission-values {
    padding: 80px 0;
}

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

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mission-card h3 {
    color: #3498db;
    margin-bottom: 20px;
}

.mission-card ul {
    padding-left: 20px;
}

.mission-card li {
    margin-bottom: 8px;
    color: #555;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.team-member {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.team-member h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.team-member .position {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-member p {
    color: #666;
    font-size: 0.95rem;
}

/* Certifications */
.certifications {
    padding: 80px 0;
}

.certifications h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cert-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.cert-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.cert-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Main Services */
.main-services {
    padding: 80px 0;
}

.service-detailed {
    margin-bottom: 80px;
}

.service-content {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    align-items: start;
}

.service-content.reverse {
    grid-template-columns: 1fr 120px;
}

.service-content.reverse .service-text {
    order: -1;
}

.service-icon img {
    width: 100px;
    height: 100px;
}

.service-text h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3498db;
}

.service-text ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-text li {
    margin-bottom: 8px;
    color: #555;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.duration {
    color: #666;
    font-size: 0.95rem;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.additional-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.additional-services .service-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.additional-services .service-card .price {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 1.2rem;
    text-align: center;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.step p {
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-content p {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Statistics */
.statistics {
    padding: 60px 0;
    background-color: #2c3e50;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #ecf0f1;
}

/* Testimonials */
.testimonials-main {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
}

.testimonial-icon img {
    width: 80px;
    height: 80px;
}

.stars {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.testimonial-author strong {
    color: #2c3e50;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Video Testimonials */
.video-testimonials {
    padding: 80px 0;
}

.video-testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.video-placeholder {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed #ddd;
}

.video-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.video-placeholder h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.video-placeholder p {
    color: #666;
    font-style: italic;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.success-stories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.story-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #27ae60;
}

.story-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.story-card p {
    color: #555;
    margin-bottom: 20px;
}

.story-outcome {
    background: #e8f5e8;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.story-outcome strong {
    color: #27ae60;
    font-size: 1.1rem;
}

/* Reviews Summary */
.reviews-summary {
    padding: 80px 0;
}

.summary-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.summary-item h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.rating-bar {
    background: #eee;
    height: 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: #27ae60;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.summary-item span {
    font-weight: 700;
    color: #27ae60;
}

/* Blog Styles */
.featured-article {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-content {
    padding: 40px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.category {
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.date {
    color: #666;
}

.read-time {
    color: #666;
}

.featured-content h2 {
    margin-bottom: 15px;
}

.featured-content h2 a {
    color: #2c3e50;
    text-decoration: none;
}

.featured-content h2 a:hover {
    color: #3498db;
}

.excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    color: #2980b9;
}

/* Blog Posts Grid */
.blog-posts {
    padding: 80px 0;
}

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

.post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 30px;
}

.post-content h3 {
    margin-bottom: 15px;
}

.post-content h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.post-content h3 a:hover {
    color: #3498db;
}

/* Blog Categories */
.blog-categories {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-categories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.category-card h3 {
    color: #3498db;
    margin-bottom: 15px;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
}

.post-count {
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: #ecf0f1;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.privacy-note {
    color: #bdc3c7;
    font-size: 0.85rem;
    margin: 0;
}

/* Contact Styles */
.contact-info-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-method {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-method h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-method p {
    color: #666;
    margin-bottom: 10px;
}

.contact-method strong {
    color: #3498db;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.form-content h2 {
    margin-bottom: 15px;
}

.form-content p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-group {
    flex-direction: row;
    align-items: start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    margin-top: 2px;
}

.checkbox-label a {
    color: #3498db;
}

/* Form Sidebar */
.form-sidebar {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    height: fit-content;
}

.sidebar-content h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.sidebar-content .benefits-list {
    margin-bottom: 30px;
}

.contact-cta {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.contact-cta h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-cta p {
    margin-bottom: 15px;
    color: #666;
}

.phone-cta {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3498db;
    text-decoration: none;
}

.phone-cta:hover {
    color: #2980b9;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

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

.map-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 60px;
    text-align: center;
}

.map-content h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.map-content p {
    color: #666;
    margin-bottom: 15px;
}

.map-content ul {
    text-align: left;
    display: inline-block;
    color: #666;
}

/* Thank You Styles */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-content h1 {
    color: #27ae60;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.next-steps h2 {
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-item {
    text-align: center;
    padding: 30px;
}

.step-item .step-number {
    width: 50px;
    height: 50px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.contact-info-box h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-details {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.phone-link,
.email-link {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.phone-link:hover,
.email-link:hover {
    color: #2980b9;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Additional Resources */
.additional-resources {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.additional-resources h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.resource-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.resource-card p {
    color: #666;
    margin-bottom: 20px;
}

.resource-link {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}

.resource-link:hover {
    color: #2980b9;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.legal-main {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

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

.legal-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-section h3 {
    color: #3498db;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    margin-top: 20px;
}

.legal-section ol {
    counter-reset: item;
    padding-left: 0;
}

.legal-section ol > li {
    display: block;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.legal-section ol > li::before {
    content: counter(item) ".";
    counter-increment: item;
    font-weight: bold;
    color: #3498db;
    position: absolute;
    left: 0;
}

.legal-section ul {
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #555;
}

.legal-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #3498db;
    text-align: center;
}

.legal-footer p {
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Legal Sidebar */
.legal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: fit-content;
}

.sidebar-box h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.95rem;
}

.quick-links a:hover {
    color: #2980b9;
}

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

.highlight-list li {
    margin-bottom: 10px;
    color: #27ae60;
    font-weight: 600;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    color: #2980b9;
}

/* Cookie Policy Specific */
.cookie-table {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

.cookie-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.cookie-quick-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.cookie-control-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-control-btn:hover {
    background: #e9ecef;
}

.control-label {
    font-weight: 600;
    color: #2c3e50;
}

.control-status {
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 3px;
}

.control-status.enabled {
    background: #d4edda;
    color: #155724;
}

.control-status.disabled {
    background: #f8d7da;
    color: #721c24;
}

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

.useful-links li {
    margin-bottom: 8px;
}

.useful-links a {
    color: #3498db;
    text-decoration: none;
}

.useful-links a:hover {
    color: #2980b9;
}

/* Blog Article Styles */
.blog-article {
    margin-top: 70px;
}

.article-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #bdc3c7;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.article-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.article-intro {
    color: #ecf0f1;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.article-image img {
    max-width: 300px;
    height: auto;
}

.article-content {
    padding: 80px 0;
}

.article-main {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.article-main h2 {
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.article-main h3 {
    color: #3498db;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-main h4 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 10px;
}

.article-main ul,
.article-main ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-main li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.article-main blockquote {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
}

.article-main blockquote p {
    margin: 0;
    color: #555;
}

/* Article Sidebar */
.article-sidebar {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.related-articles,
.author-bio,
.contact-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.related-articles h3,
.author-bio h3,
.contact-box h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-item {
    text-decoration: none;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.related-item:hover {
    background: #e9ecef;
}

.related-item h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1rem;
}

.related-item span {
    color: #666;
    font-size: 0.85rem;
}

.author-bio p {
    color: #666;
    margin: 0;
}

.contact-box p {
    color: #666;
    margin-bottom: 15px;
}

.contact-phone {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-phone:hover {
    color: #2980b9;
}

/* Special Content Boxes */
.info-box,
.warning-box,
.cta-box,
.summary-box,
.example-box {
    margin: 30px 0;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid;
}

.info-box {
    background: #e8f4f8;
    border-color: #3498db;
}

.info-box h4 {
    color: #2980b9;
    margin-bottom: 10px;
}

.warning-box {
    background: #fff3cd;
    border-color: #f39c12;
}

.warning-box h3 {
    color: #d68910;
    margin-bottom: 15px;
}

.example-box {
    background: #f0f8f0;
    border-color: #27ae60;
}

.example-box h4 {
    color: #229954;
    margin-bottom: 10px;
}

.cta-box {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border: none;
    color: white;
    text-align: center;
}

.cta-box h3 {
    color: white;
    margin-bottom: 15px;
}

.cta-box p {
    color: #ecf0f1;
    margin-bottom: 20px;
}

.summary-box {
    background: #f8f9fa;
    border-color: #2c3e50;
}

.summary-box h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Article-specific styles for blog-3 */
.mistake-item {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.mistake-item:last-child {
    border-bottom: none;
}

.mistake-item h2 {
    color: #e74c3c;
    margin-bottom: 20px;
}

.consequences,
.solution {
    margin: 25px 0;
}

.consequences h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.solution h3 {
    color: #27ae60;
    margin-bottom: 15px;
}

.mistake-checklist {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mistake-checklist h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.checklist label:hover {
    background: #f8f9fa;
}

.checklist input[type="checkbox"] {
    margin: 0;
}

/* Article-specific styles for blog-4 */
.cost-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.cost-column {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.cost-column h3 {
    margin-bottom: 15px;
}

.depreciation-chart {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.depreciation-chart h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-category {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-category h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.admin-costs,
.insurance-breakdown,
.parking-costs,
.cleaning-costs,
.financing-costs {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.admin-costs h3,
.insurance-breakdown h3,
.parking-costs h3,
.cleaning-costs h3,
.financing-costs h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.fuel-calculator {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.fuel-calculator h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.formula {
    background: white;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
}

.fuel-examples h4 {
    color: #3498db;
    margin: 20px 0 15px;
}

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

.database-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.database-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.database-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.cost-breakdown-table {
    overflow-x: auto;
    margin: 30px 0;
}

.cost-breakdown-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cost-breakdown-table th,
.cost-breakdown-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cost-breakdown-table th {
    background: #2c3e50;
    color: white;
    font-weight: 600;
}

.cost-breakdown-table .total-row {
    background: #f8f9fa;
    font-weight: 600;
}

.cost-reduction-tips {
    margin: 40px 0;
}

.tip-category {
    margin: 25px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.tip-category h4 {
    color: #27ae60;
    margin-bottom: 15px;
}

.budget-planning {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.budget-planning h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.budget-planning ol {
    padding-left: 20px;
}

.budget-planning li {
    margin-bottom: 10px;
    color: #555;
}

.key-takeaways {
    margin-top: 20px;
}

.key-takeaways h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.key-takeaways ul {
    padding-left: 20px;
}

.cost-calculator-widget {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cost-calculator-widget h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calculator-form label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.calculator-form input {
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.calculator-form input:focus {
    outline: none;
    border-color: #3498db;
}

.calculator-result {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-top: 15px;
}

.calculator-result strong {
    color: #2980b9;
    font-size: 1.1rem;
}

.checklist-box {
    background: #f0f8f0;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    margin: 30px 0;
}

.checklist-box h3 {
    color: #27ae60;
    margin-bottom: 15px;
}

.checklist-box .checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checklist-box .checklist label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #3498db;
    margin-bottom: 15px;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
    color: #3498db;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info strong {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .legal-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-content .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        width: 100%;
        order: -1;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding: 50px 0;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    /* Sections */
    .hero {
        padding: 100px 0 60px;
    }
    
    .services-preview,
    .why-choose-us,
    .company-story,
    .mission-values,
    .team-section,
    .certifications,
    .main-services,
    .additional-services,
    .process-section,
    .cta-section,
    .testimonials-main,
    .video-testimonials,
    .success-stories,
    .reviews-summary,
    .blog-posts,
    .blog-categories,
    .newsletter-section,
    .contact-info-section,
    .contact-form-section,
    .faq-section,
    .map-section,
    .thank-you-section,
    .additional-resources,
    .legal-content,
    .article-content {
        padding: 60px 0;
    }
    
    /* Grids */
    .services-grid,
    .mission-grid,
    .team-grid,
    .cert-grid,
    .process-steps,
    .stats-grid,
    .testimonials-grid,
    .video-grid,
    .stories-grid,
    .summary-grid,
    .posts-grid,
    .categories-grid,
    .contact-grid,
    .faq-grid,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    /* Service content */
    .service-content,
    .service-content.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-content.reverse .service-text {
        order: 0;
    }
    
    /* Price info */
    .price-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    /* Cost comparison */
    .cost-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Hero and CTA buttons */
    .hero-buttons,
    .cta-buttons,
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Contact details */
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Steps grid */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Article meta */
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Database grid */
    .database-grid {
        grid-template-columns: 1fr;
    }
    
    /* Tables */
    .cookie-table,
    .cost-breakdown-table {
        font-size: 0.85rem;
    }
    
    .cookie-table th,
    .cookie-table td,
    .cost-breakdown-table th,
    .cost-breakdown-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .service-card,
    .mission-card,
    .team-member,
    .cert-item,
    .testimonial-card,
    .story-card,
    .post-card,
    .category-card,
    .contact-method,
    .faq-item,
    .resource-card,
    .sidebar-box,
    .legal-main {
        padding: 20px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .article-header h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .hero-buttons,
    .cta-section,
    .footer,
    .hamburger {
        display: none;
    }
    
    .hero {
        margin-top: 0;
        padding: 40px 0;
        background: none;
        color: black;
    }
    
    .hero-text h1,
    .page-header h1,
    .article-header h1 {
        color: black;
    }
    
    .hero-text p,
    .page-header p,
    .article-intro {
        color: black;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1 { font-size: 18pt; }
    h2 { font-size: 16pt; }
    h3 { font-size: 14pt; }
    h4 { font-size: 12pt; }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .service-card,
    .testimonial-card,
    .legal-main {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .service-card,
    .testimonial-card,
    .post-card {
        border: 2px solid #333;
    }
    
    .nav-link.active::after {
        height: 3px;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus,
.contact-link:focus,
.phone-cta:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #3498db;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 0;
}
