/* Base Styles */
:root {
    --primary-color: #0056b3;
    --primary-light: #3a7cbd;
    --primary-dark: #003b7a;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --text-color: #333;
    --white: #ffffff;
    --black: #000000;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --border-radius: 5px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --section-padding: 80px 0;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

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

.btn-secondary:hover {
    background-color: #1a252f;
    color: var(--white);
}

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

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

.logo img {
    max-height: 60px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 8px 0;
    position: relative;
}

.nav-links li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover:after,
.nav-links li a.active:after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--light-gray);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Services Overview Section */
.services-overview {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

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

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

.service-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.why-choose-us .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.why-choose-content {
    flex: 1;
}

.why-choose-image {
    flex: 1;
}

.why-choose-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.benefits-list {
    margin-top: 30px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.benefit-icon {
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-icon svg {
    fill: var(--primary-color);
}

.benefit-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

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

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--white);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide:first-child {
    display: block;
}

.testimonial-content {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-content:before {
    content: """;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    line-height: 1;
    color: rgba(0, 86, 179, 0.1);
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.client-details p {
    margin-bottom: 0;
    color: var(--dark-gray);
    font-style: normal;
    font-size: 0.9rem;
}

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

.prev-btn, .next-btn {
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.prev-btn svg, .next-btn svg {
    fill: var(--primary-color);
    transition: var(--transition);
}

.prev-btn:hover svg, .next-btn:hover svg {
    fill: var(--white);
}

/* Latest Blogs Section */
.latest-blogs {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

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

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

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

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.read-more:after {
    content: '→';
    margin-left: 8px;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 12px;
}

.blog-cta {
    text-align: center;
}

/* Timeline Section */
.timeline {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.timeline-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    z-index: 1;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: calc(50% + 30px);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.timeline-content {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    width: calc(50% - 50px);
    margin-left: auto;
    margin-top: 45px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: auto;
    right: calc(50% + 30px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.timeline-content p {
    color: var(--dark-gray);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-logo img {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-contact address {
    font-style: normal;
}

.footer-contact address p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact address p svg {
    margin-right: 10px;
    fill: var(--primary-light);
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

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

.social-icons a svg {
    fill: var(--white);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin-bottom: 0;
}

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

.cookie-btn {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

.accept-btn:hover {
    background-color: var(--primary-dark);
}

.settings-btn {
    background-color: var(--light-gray);
    color: var(--text-color);
}

.settings-btn:hover {
    background-color: var(--medium-gray);
}

.reject-btn {
    background-color: var(--white);
    color: var(--text-color);
    border: 1px solid var(--medium-gray);
}

.reject-btn:hover {
    background-color: var(--light-gray);
}

.cookie-policy-link {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Glossary */
.glossary {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.glossary-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.glossary-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.glossary-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.glossary-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* Page Banner */
.page-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Services Page */
.services-intro {
    padding: var(--section-padding);
    background-color: var(--white);
}

.services-intro .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.services-intro-content {
    flex: 1;
}

.services-intro-image {
    flex: 1;
}

.services-intro-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.services-intro-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.services-intro-content p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.services-main {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.service-item {
    display: flex;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    margin-bottom: 40px;
    transition: var(--transition);
}

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

.service-item:last-child {
    margin-bottom: 0;
}

.service-icon {
    margin-right: 30px;
    flex-shrink: 0;
}

.service-icon svg {
    fill: var(--primary-color);
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.service-features {
    margin-top: 20px;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-process {
    padding: var(--section-padding);
    background-color: var(--white);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% + 30px);
    background-color: var(--primary-light);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.step-content p {
    color: var(--dark-gray);
}

.client-types {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

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

.client-type {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.client-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-icon {
    margin-bottom: 20px;
}

.client-icon svg {
    fill: var(--primary-color);
}

.client-type h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.client-type p {
    color: var(--dark-gray);
}

.pricing {
    padding: var(--section-padding);
    background-color: var(--white);
}

.pricing-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.fee-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.fee-type {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.fee-type h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

.fee-type h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.fee-type p {
    color: var(--dark-gray);
}

.pricing-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.faq {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.faq-toggle svg {
    transition: var(--transition);
    fill: var(--dark-gray);
}

.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
    fill: var(--primary-color);
}

.faq-answer {
    padding: 0 30px;
    height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    height: auto;
}

.faq-answer p {
    color: var(--dark-gray);
}

/* About Us Page */
.about-intro {
    padding: var(--section-padding);
    background-color: var(--white);
}

.about-intro .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-intro-content {
    flex: 1;
}

.about-intro-image {
    flex: 1;
}

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

.about-intro-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-intro-content p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.our-values {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

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

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

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

.value-icon {
    margin-bottom: 20px;
}

.value-icon svg {
    fill: var(--primary-color);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.team-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

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

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

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

.team-member img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 20px 0 5px;
    color: var(--secondary-color);
    padding: 0 20px;
}

.team-member p {
    padding: 0 20px 20px;
    color: var(--dark-gray);
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    gap: 15px;
    padding: 0 20px 20px;
}

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

.member-social a svg {
    fill: var(--primary-color);
}

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

.member-social a:hover svg {
    fill: var(--white);
}

.credentials {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.credentials-content {
    max-width: 900px;
    margin: 0 auto;
}

.credentials-content > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

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

.credential-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.credential-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.credential-icon {
    margin-bottom: 20px;
}

.credential-icon svg {
    fill: var(--primary-color);
}

.credential-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.credential-item p {
    color: var(--dark-gray);
}

.firm-stats {
    padding: var(--section-padding);
    background-color: var(--primary-color);
    color: var(--white);
}

.firm-stats .section-title {
    color: var(--white);
}

.firm-stats .section-title:after {
    background-color: var(--white);
}

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

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

.client-stories {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.story-card {
    display: flex;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.story-image {
    flex: 1;
    max-width: 200px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 2;
    padding: 30px;
}

.story-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.client-name {
    font-style: italic;
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Blog Page */
.blog-main {
    padding: var(--section-padding);
    background-color: var(--white);
}

.blog-wrapper {
    display: flex;
    gap: 50px;
}

.blog-posts {
    flex: 2;
}

.blog-sidebar {
    flex: 1;
}

.blog-post {
    margin-bottom: 50px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.post-image {
    height: 400px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 30px;
}

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

.post-date, .post-category {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.post-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.post-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 25px 0 15px;
    color: var(--secondary-color);
}

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

.post-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content ul li {
    margin-bottom: 10px;
    list-style-type: disc;
    color: var(--dark-gray);
}

.post-content .read-more {
    display: inline-block;
    margin-top: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--secondary-color);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.pagination a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.pagination a:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.pagination a.next {
    width: auto;
    padding: 0 20px;
    border-radius: var(--border-radius);
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.search-form {
    display: flex;
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.search-form button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

.search-form button svg {
    fill: var(--dark-gray);
    transition: var(--transition);
}

.search-form button:hover svg {
    fill: var(--primary-color);
}

.categories-widget ul li {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 15px;
}

.categories-widget ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.categories-widget ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--dark-gray);
    transition: var(--transition);
}

.categories-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.categories-widget ul li a span {
    background-color: var(--light-gray);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post {
    display: flex;
    gap: 15px;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

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

.recent-post-content h4 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.recent-post-content h4 a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.recent-post-content h4 a:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.subscribe-form {
    margin-top: 20px;
}

.subscribe-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    margin-bottom: 15px;
}

.subscribe-form .btn {
    width: 100%;
}

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

.tags a {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tags a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Contact Page */
.contact-info {
    padding: 80px 0;
    background-color: var(--white);
}

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

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

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

.contact-icon {
    margin-bottom: 20px;
}

.contact-icon svg {
    fill: var(--primary-color);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-form-container {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.contact-map {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-container {
    flex: 2;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-call {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.schedule-call h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-form-container p {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

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

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.2);
}

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

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.form-submit {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.office-gallery {
    padding: 80px 0;
    background-color: var(--white);
}

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

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.thank-you-popup.active {
    opacity: 1;
    visibility: visible;
}

.thank-you-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: translateY(50px);
    transition: transform 0.5s ease;
}

.thank-you-popup.active .thank-you-content {
    transform: translateY(0);
}

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

.thank-you-icon svg {
    fill: var(--success);
}

.thank-you-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero .container,
    .why-choose-us .container,
    .about-intro .container,
    .services-intro .container {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image,
    .why-choose-content,
    .why-choose-image,
    .about-intro-content,
    .about-intro-image,
    .services-intro-content,
    .services-intro-image {
        flex: auto;
        width: 100%;
    }
    
    .hero-image img,
    .why-choose-image img,
    .about-intro-image img,
    .services-intro-image img {
        margin: 40px auto 0;
        max-width: 600px;
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .story-card {
        flex-direction: column;
    }
    
    .story-image {
        max-width: none;
        height: 200px;
    }
    
    .timeline-item {
        text-align: left;
    }
    
    .timeline-date {
        position: relative;
        left: auto;
        right: auto;
        display: inline-block;
        margin-bottom: 15px;
    }
    
    .timeline-content {
        width: auto;
        margin-left: 30px;
        margin-top: 15px;
    }
    
    .timeline-dot {
        left: 0;
        transform: none;
    }
    
    .timeline-container:before {
        left: 10px;
        transform: none;
    }
    
    .timeline-item:nth-child(even) .timeline-date,
    .timeline-item:nth-child(even) .timeline-content {
        left: auto;
        right: auto;
        margin-left: 30px;
        margin-right: 0;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .blog-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        padding: 15px 0;
    }
    
    .nav-links li a:after {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .testimonial-content {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .testimonial-content:before {
        font-size: 4rem;
    }
    
    .blog-post .post-image {
        height: 250px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
