/* 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: #333;
    background-color: #f8f9fa;
}

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

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    color: #007bff;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: -5px;
}

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

nav a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

nav a:hover,
nav a.active {
    color: #007bff;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #343a40;
    color: white;
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

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

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-buttons button {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.cookie-buttons button:hover {
    background: #0056b3;
}

.cookie-buttons button:nth-child(2) {
    background: #6c757d;
}

.cookie-buttons button:nth-child(2):hover {
    background: #545b62;
}

.cookie-buttons button:nth-child(3) {
    background: #28a745;
}

.cookie-buttons button:nth-child(3):hover {
    background: #1e7e34;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 4rem 0;
}

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

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #218838;
}

.hero-graphic svg {
    width: 100%;
    max-width: 400px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.services-overview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #343a40;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #343a40;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* About Section */
.about-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.about-content p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.about-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.about-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.about-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.learn-more {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.learn-more:hover {
    border-bottom-color: #007bff;
}

/* Company Story */
.company-story {
    padding: 4rem 0;
    background: white;
}

.story-content {
    text-align: center;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #343a40;
}

.story-graphic {
    margin: 2rem 0;
}

.story-content p {
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #343a40;
}

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

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

.member-photo {
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #343a40;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.team-member p:last-child {
    font-style: italic;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #343a40;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
}

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

.value-item h3 {
    color: #343a40;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #6c757d;
    line-height: 1.6;
}

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

.service-detail {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-detail h3 {
    color: #343a40;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-detail p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.service-detail ul {
    list-style: none;
    margin: 1rem 0;
}

.service-detail li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-detail li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.price {
    font-weight: 700;
    color: #007bff;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Service Process */
.service-process {
    padding: 4rem 0;
    background: #f8f9fa;
}

.service-process h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #343a40;
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #343a40;
    margin-bottom: 1rem;
}

.step p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background: white;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.client-info h3 {
    color: #343a40;
    margin-bottom: 0.2rem;
}

.client-info p {
    color: #6c757d;
    font-size: 0.9rem;
}

.testimonial-content p {
    color: #495057;
    font-style: italic;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: #343a40;
    color: white;
}

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

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

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffc107;
}

.stat-item p {
    color: #adb5bd;
    font-size: 1.1rem;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background: white;
}

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

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-meta .date {
    color: #6c757d;
}

.blog-meta .category {
    color: #007bff;
    font-weight: 600;
}

.blog-content h3 {
    color: #343a40;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.blog-content p {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.read-more:hover {
    border-bottom-color: #007bff;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.newsletter-content p {
    color: #6c757d;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #0056b3;
}

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

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

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #343a40;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-details h3 {
    color: #343a40;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #6c757d;
    line-height: 1.6;
}

.contact-form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #343a40;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

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

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

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

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

.submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #0056b3;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #343a40;
}

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

.map-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.map-info h3 {
    color: #343a40;
    margin-bottom: 1rem;
}

.map-info p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.map-info ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.map-info li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.map-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Thanks Section */
.thanks-section {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #343a40;
}

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

.step {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-reminder {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    margin-bottom: 2rem;
}

.contact-reminder h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.contact-reminder p {
    color: #856404;
    margin-bottom: 1rem;
}

.phone-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}

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

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

.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-primary:hover {
    background: #0056b3;
}

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

.btn-secondary:hover {
    background: #545b62;
}

/* Article Styles */
.article-header {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: #6c757d;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.article-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.article-content {
    padding: 3rem 0;
    background: white;
}

.article-content .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.article-body {
    max-width: none;
}

.article-image {
    margin-bottom: 2rem;
}

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

.article-text h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #343a40;
}

.article-text h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.5rem;
    color: #343a40;
}

.article-text p {
    color: #495057;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.article-text ul,
.article-text ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-text li {
    margin-bottom: 0.5rem;
    color: #495057;
    line-height: 1.6;
}

.article-text strong {
    color: #343a40;
}

.article-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.related-articles {
    margin-bottom: 2rem;
}

.related-articles h3 {
    color: #343a40;
    margin-bottom: 1rem;
}

.related-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.related-item h4 {
    margin-bottom: 0.5rem;
}

.related-item h4 a {
    color: #007bff;
    text-decoration: none;
}

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

.related-item p {
    color: #6c757d;
    font-size: 0.9rem;
}

.contact-cta {
    background: #007bff;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.contact-cta h3 {
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-cta .cta-button {
    background: white;
    color: #007bff;
}

.contact-cta .cta-button:hover {
    background: #f8f9fa;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
    background: white;
}

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

.legal-text h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #343a40;
}

.legal-text h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.5rem;
    color: #343a40;
}

.legal-text p {
    color: #495057;
    margin-bottom: 1rem;
}

.legal-text ul,
.legal-text ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #495057;
}

.legal-text strong {
    color: #343a40;
}

.legal-text a {
    color: #007bff;
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    text-align: left;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #343a40;
}

.cookies-table td {
    color: #495057;
}

.cookie-settings-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin: 1rem 0;
    transition: background 0.3s;
}

.cookie-settings-btn:hover {
    background: #0056b3;
}

/* Footer */
footer {
    background: #343a40;
    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 {
    color: #ffc107;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #adb5bd;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #adb5bd;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .article-content .container {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .services-overview h2,
    .about-content h2,
    .team-section h2,
    .values-section h2,
    .service-process h2,
    .stats-section h2,
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .article-text h2 {
        font-size: 1.5rem;
    }
    
    .article-text h3 {
        font-size: 1.2rem;
    }
}
