/* Reset & Base Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #ffaa00;
    --accent-color: #ff5500;
    --dark-color: #333333;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --gray-dark: #666666;
    --text-color: #444444;
    --border-color: #dddddd;
    --success-color: #28a745;
    --error-color: #dc3545;
    --font-primary: 'Roboto', 'Segoe UI', sans-serif;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--light-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hidden {
    display: none !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--light-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.btn-secondary:hover {
    background-color: #e99900;
    color: var(--light-color);
}

.read-more {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-right: 24px;
}

.read-more:after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-color);
}

.read-more:hover:after {
    right: -5px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

input, textarea, select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-check label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-buttons button:first-child {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.cookie-buttons button:nth-child(2) {
    background-color: var(--gray-color);
    color: var(--dark-color);
}

.cookie-buttons button:last-child {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.cookie-buttons button:hover {
    opacity: 0.9;
}

.cookie-settings {
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.cookie-option {
    margin-bottom: 15px;
}

.cookie-option label {
    font-weight: 600;
    display: inline;
    margin-left: 10px;
}

.cookie-option p {
    margin-left: 30px;
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

#save-cookie-preferences {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-top: 10px;
}

/* Header & Navigation */
header {
    background-color: var(--light-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo img {
    display: block;
}

.main-menu {
    display: flex;
}

.main-menu li {
    margin-left: 30px;
}

.main-menu a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

.main-menu a:hover {
    color: var(--primary-color);
}

.main-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-menu a:hover:after {
    width: 100%;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    background-color: #e6f2ff;
    background-image: url('../assets/banner-bg.svg');
    overflow: hidden;
    padding: 100px 0;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    background-image: url('assets/banner-bg.svg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-dark);
}

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

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.service-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--gray-dark);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

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

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-dark);
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.benefit-card:hover {
    background-color: var(--gray-color);
}

.benefit-icon {
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--gray-dark);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.testimonials-slider {
    position: relative;
    display: flex;
    overflow: hidden;
}

.testimonial-card {
    min-width: 100%;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.testimonial-quote:before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-location {
    color: var(--gray-dark);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-controls button:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.blog-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.blog-content p {
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.blog-more {
    text-align: center;
    margin-top: 40px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

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

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

.newsletter-content p {
    margin-bottom: 30px;
    color: var(--gray-dark);
}

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

.newsletter-form input[type="email"] {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.newsletter-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    min-width: 120px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #f5f5f5;
    padding: 70px 0 30px;
}

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

.footer-column h3 {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #f5f5f5;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-column p {
    color: #a0a0a0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

address p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

address p i {
    margin-right: 10px;
    color: var(--primary-color);
}

address a {
    color: #f5f5f5;
    transition: var(--transition);
}

address a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background-color: #e6f2ff;
    padding: 60px 0;
    text-align: center;
}

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

.breadcrumbs {
    display: flex;
    justify-content: center;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--gray-dark);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs span:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
}

/* Blog Listing Page */
.blog-listing {
    padding: 80px 0;
}

.blog-listing .blog-card {
    margin-bottom: 30px;
}

/* Single Blog Post */
.blog-post {
    padding: 80px 0;
}

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

.post-header {
    margin-bottom: 40px;
}

.post-header h1 {
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.post-date {
    margin-right: 20px;
}

.post-image {
    margin-bottom: 30px;
}

.post-image img {
    width: 100%;
    border-radius: 8px;
}

.post-body h2, .post-body h3 {
    margin-top: 40px;
}

.post-body p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-body ul, .post-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-body li {
    margin-bottom: 10px;
}

.post-share {
    margin-top: 50px;
    display: flex;
    align-items: center;
}

.post-share span {
    margin-right: 15px;
    font-weight: 600;
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-color);
    color: var(--dark-color);
    transition: var(--transition);
}

.share-links a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

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

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p, .contact-text a {
    color: var(--gray-dark);
}

.contact-form h2 {
    margin-bottom: 30px;
}

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

.contact-submit {
    margin-top: 10px;
}

/* Services Page */
.services-page {
    padding: 80px 0;
}

.service-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-section:last-child {
    border-bottom: none;
}

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

.service-section-content:nth-child(even) {
    direction: rtl;
}

.service-section-text {
    direction: ltr;
}

.service-section-image {
    direction: ltr;
}

.service-section-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* About Page */
.about-page {
    padding: 80px 0;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-history {
    margin-bottom: 60px;
}

.history-title {
    text-align: center;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--light-color);
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--light-color);
    position: relative;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.team-section {
    text-align: center;
}

.team-title {
    margin-bottom: 40px;
}

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

.team-member {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member-info {
    padding: 20px;
}

.team-member-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-member-position {
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-member-social a {
    color: var(--gray-dark);
    transition: var(--transition);
}

.team-member-social a:hover {
    color: var(--primary-color);
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

.thank-you-container {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon i {
    font-size: 3rem;
    color: var(--success-color);
}

.thank-you-content h1 {
    margin-bottom: 20px;
}

.thank-you-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--gray-dark);
}

/* Legal Pages */
.legal-section {
    padding: 80px 0;
}

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

.legal-content h1 {
    margin-bottom: 30px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.legal-date {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--gray-dark);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .service-section-content {
        grid-template-columns: 1fr;
    }
    
    .service-section-content:nth-child(even) {
        direction: ltr;
    }
    
    .service-section-image {
        margin-bottom: 30px;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 21px;
    }
}

@media (max-width: 768px) {
    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        flex-direction: column;
    }
    
    .main-menu.active {
        display: flex;
    }
    
    .main-menu li {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        border-radius: var(--border-radius);
        border-right: 1px solid var(--border-color);
        margin-bottom: 10px;
    }
    
    .newsletter-form .btn {
        border-radius: var(--border-radius);
        width: 100%;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .hero-banner {
        padding: 60px 0;
    }
    
    .services-section,
    .about-section,
    .benefits-section,
    .testimonials-section,
    .blog-section,
    .newsletter-section {
        padding: 50px 0;
    }
    
    .blog-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .footer-content {
        gap: 30px;
    }
}
