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

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

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

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

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

.btn-primary:hover {
    background-color: #1e40af;
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

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

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

.hidden {
    display: none;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: white;
    padding: 20px;
    z-index: 1000;
    border-top: 3px solid #2563eb;
}

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

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

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
}

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

.nav-menu a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
    background-color: #f0f9ff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2563eb;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.hero-graphic svg {
    width: 100%;
    height: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 70px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card svg {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1f2937;
}

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

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

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

.why-choose-us h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1f2937;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

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

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

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

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

.story-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1f2937;
}

.story-text p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.team-member {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.team-member h3 {
    font-size: 24px;
    margin: 20px 0 5px;
    color: #1f2937;
}

.team-member .role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #6b7280;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.value-card {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-card svg {
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1f2937;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* Footer */
.footer {
    background-color: #1f2937;
    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,
.footer-section h4 {
    margin-bottom: 20px;
    color: #f9fafb;
}

.footer-section p,
.footer-section li {
    color: #d1d5db;
    line-height: 1.6;
}

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

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

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

.footer-section a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Services Detail */
.service-detail-card {
    background: white;
    margin-bottom: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

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

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

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

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

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

.service-price {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f9ff;
    border-radius: 8px;
}

.service-price .price {
    font-size: 28px;
    font-weight: bold;
    color: #2563eb;
    display: block;
}

.service-price .price-note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 5px;
}

/* Service Packages */
.service-packages {
    padding: 80px 0;
    background-color: #f9fafb;
}

.service-packages h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.package-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.package-card.featured {
    border: 3px solid #2563eb;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-price {
    margin: 20px 0;
}

.package-price .price {
    font-size: 48px;
    font-weight: bold;
    color: #2563eb;
}

.package-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.package-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* Testimonial Stats */
.testimonial-stats {
    padding: 80px 0;
    background-color: #f9fafb;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-item svg {
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 10px;
}

.stat-item p {
    color: #6b7280;
}

/* Testimonials Grid */
.testimonials-grid {
    padding: 80px 0;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #2563eb;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-details h4 {
    color: #1f2937;
    margin-bottom: 5px;
}

.customer-details p {
    color: #6b7280;
    font-size: 14px;
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin: 20px 0;
    font-style: italic;
}

.testimonial-date {
    font-size: 14px;
    color: #9ca3af;
    text-align: right;
}

/* Blog Articles */
.featured-article {
    padding: 80px 0;
    background-color: #f9fafb;
}

.featured-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

.category-tag {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.featured-content h2 a {
    color: #1f2937;
    text-decoration: none;
}

.featured-content h2 a:hover {
    color: #2563eb;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 14px;
    margin: 20px 0 30px;
}

.blog-articles {
    padding: 80px 0;
}

.blog-articles h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.article-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image svg {
    width: 100%;
    height: 100%;
}

.article-content {
    padding: 30px;
}

.article-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.article-content h3 a {
    color: #1f2937;
    text-decoration: none;
}

.article-content h3 a:hover {
    color: #2563eb;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.newsletter-text h2 {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 20px;
}

.newsletter-form-container {
    display: flex;
    gap: 15px;
}

.newsletter-form-container input {
    flex: 1;
    padding: 12px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
}

.newsletter-form-container input:focus {
    outline: none;
    border-color: #2563eb;
}

/* Contact Page */
.contact-info {
    padding: 80px 0;
    background-color: #f9fafb;
}

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

.contact-item {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-item svg {
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 15px;
}

.contact-item p {
    color: #6b7280;
    margin-bottom: 8px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 15px;
}

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

.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    background-color: white;
}

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

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

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-note {
    margin-top: 15px;
    font-size: 14px;
    color: #6b7280;
}

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

.map-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #1f2937;
}

.map-container {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.transport-info,
.parking-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.transport-info h3,
.parking-info h3 {
    color: #1f2937;
    margin-bottom: 20px;
}

.transport-info ul,
.parking-info ul {
    list-style: none;
}

.transport-info li,
.parking-info li {
    padding: 8px 0;
    color: #6b7280;
    position: relative;
    padding-left: 20px;
}

.transport-info li::before,
.parking-info li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 18px;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

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

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: #1f2937;
    margin: 40px 0 20px;
    font-size: 24px;
}

.legal-text h3 {
    color: #374151;
    margin: 30px 0 15px;
    font-size: 18px;
}

.legal-text p {
    color: #6b7280;
    margin-bottom: 15px;
}

.legal-text ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-text li {
    color: #6b7280;
    margin-bottom: 8px;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 40px;
}

.thanks-section h1 {
    font-size: 42px;
    color: #1f2937;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 60px;
}

.next-steps {
    margin-bottom: 60px;
}

.next-steps h2 {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 40px;
}

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

.step-item {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin: 0 auto 20px;
}

.step-item h3 {
    color: #1f2937;
    margin-bottom: 15px;
}

.step-item p {
    color: #6b7280;
    line-height: 1.6;
}

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

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

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
}

.office-hours {
    color: #6b7280;
    margin-top: 20px;
}

.thanks-actions {
    margin-bottom: 60px;
}

.thanks-actions .btn {
    margin: 0 10px;
}

.additional-resources h3 {
    color: #1f2937;
    margin-bottom: 30px;
    font-size: 24px;
}

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

.resource-link {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-5px);
}

.resource-link h4 {
    color: #1f2937;
    margin-bottom: 10px;
}

.resource-link p {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .why-content,
    .story-content,
    .service-content,
    .featured-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-content.reverse .service-text,
    .service-content.reverse .service-graphic {
        order: unset;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-buttons,
    .cta-buttons,
    .thanks-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 20px;
    }
    
    .map-info {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
}

/* Blog Article Styles */
.blog-article {
    padding: 40px 0 80px;
}

.blog-article .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
}

.article-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.article-breadcrumb a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
}

.article-breadcrumb a:hover {
    opacity: 1;
}

.article-intro .lead {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 40px;
    padding: 30px;
    background: #f0f9ff;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
}

.article-image-full {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-image-full svg {
    width: 100%;
    height: auto;
    display: block;
}

.article-content h2 {
    font-size: 28px;
    color: #1f2937;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.article-content h3 {
    font-size: 22px;
    color: #374151;
    margin: 30px 0 15px;
}

.article-content h4 {
    font-size: 18px;
    color: #4b5563;
    margin: 25px 0 12px;
    font-weight: 600;
}

.article-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.article-content li {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 8px;
}

.highlight-box,
.info-box,
.warning-box {
    margin: 30px 0;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid;
}

.highlight-box {
    background: #f0f9ff;
    border-left-color: #2563eb;
}

.highlight-box h3 {
    color: #1e40af;
    margin-top: 0;
}

.info-box {
    background: #f0fdf4;
    border-left-color: #16a34a;
}

.info-box h3 {
    color: #15803d;
    margin-top: 0;
}

.warning-box {
    background: #fef2f2;
    border-left-color: #dc2626;
}

.warning-box h3 {
    color: #dc2626;
    margin-top: 0;
}

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

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

.comparison-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.comparison-table td {
    color: #6b7280;
}

.decision-matrix {
    margin: 30px 0;
}

.decision-matrix h3 {
    color: #1f2937;
    margin: 25px 0 15px;
    font-size: 20px;
}

.decision-matrix ul {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

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

.decision-matrix li:last-child {
    border-bottom: none;
}

.article-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
}

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

.article-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.article-sidebar {
    padding: 20px 0;
}

.author-box,
.related-articles,
.services-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.author-box h3,
.related-articles h3,
.services-box h3 {
    color: #1f2937;
    margin-bottom: 20px;
    font-size: 18px;
}

.author-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.author-info h4 {
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 16px;
}

.author-info p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.related-articles ul,
.services-box ul {
    list-style: none;
    padding: 0;
}

.related-articles li,
.services-box li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.related-articles li:last-child,
.services-box li:last-child {
    border-bottom: none;
}

.related-articles a {
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
}

.related-articles a:hover {
    text-decoration: underline;
}

.services-box .price {
    font-size: 18px;
    color: #2563eb;
    margin: 15px 0;
    display: block;
}

.services-box .btn {
    width: 100%;
    margin-top: 15px;
}

/* Responsive Blog Articles */
@media (max-width: 768px) {
    .blog-article .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-content h2 {
        font-size: 24px;
    }
    
    .article-content h3 {
        font-size: 20px;
    }
    
    .article-intro .lead {
        font-size: 18px;
        padding: 20px;
    }
    
    .highlight-box,
    .info-box,
    .warning-box {
        padding: 20px;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
}