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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #e8914b;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
}

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

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

.main-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-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo {
    height: 60px;
    width: auto;
}

.primary-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.primary-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.primary-navigation a:hover,
.primary-navigation a.active {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

.hero-banner {
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(44, 90, 160, 0.8)), url('images/1.jpg') center/cover;
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

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

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #d47f3a;
    transform: translateY(-2px);
}

.editor-note {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.editor-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.section-heading {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.editor-content p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.editor-signature {
    font-style: italic;
    text-align: right;
    color: var(--text-dark);
    margin-top: 30px;
}

.services-overview {
    padding: 80px 20px;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

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

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.why-choose {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.content-split {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-light);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.secondary-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.secondary-button:hover {
    background-color: #234a85;
}

.lead-form-section {
    padding: 80px 20px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #d47f3a;
}

.recent-posts {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.post-preview {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

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

.post-content {
    padding: 25px;
}

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

.post-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

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

.post-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.site-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    line-height: 1.8;
    color: #ccc;
}

.registration-number {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    color: #ccc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: var(--white);
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--secondary-color);
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-accept {
    background-color: var(--success-color);
    color: var(--white);
}

.cookie-decline {
    background-color: var(--error-color);
    color: var(--white);
}

.cookie-customize {
    background-color: var(--white);
    color: var(--text-dark);
}

.cookie-btn:hover {
    opacity: 0.9;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-light);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #1a3a6b);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

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

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 20px;
}

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

.story-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-content p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.our-mission {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

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

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-card p {
    line-height: 1.8;
    color: var(--text-light);
}

.team-section {
    padding: 80px 20px;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--text-light);
}

.team-grid {
    display: grid;
    gap: 50px;
}

.team-member {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.member-photo {
    flex: 0 0 300px;
}

.member-photo img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.member-info {
    flex: 1;
    min-width: 300px;
}

.member-info h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.member-position {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.member-bio {
    line-height: 1.8;
    color: var(--text-light);
}

.why-different {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.why-different h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.difference-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.diff-icon {
    font-size: 48px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.difference-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.difference-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), #1a3a6b);
    text-align: center;
    color: var(--white);
}

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

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-detailed {
    padding: 80px 20px;
}

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

.service-detail-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-detail.reverse .service-detail-content {
    flex-direction: row-reverse;
}

.service-detail-text {
    flex: 1;
    min-width: 300px;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-text h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.service-benefits li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
}

.service-benefits li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
}

.service-detail-image {
    flex: 0 0 500px;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #d47f3a;
}

.process-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.process-steps {
    display: grid;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    flex: 0 0 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.process-step h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.8;
}

.faq-section {
    padding: 80px 20px;
}

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

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.final-cta {
    padding: 80px 20px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), #1a3a6b);
    color: var(--white);
    padding: 60px;
    border-radius: 15px;
    text-align: center;
}

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

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 20px;
    transition: background-color 0.3s;
}

.cta-button-large:hover {
    background-color: #d47f3a;
}

.blog-listing {
    padding: 80px 20px;
}

.blog-posts-container {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-card {
    background: var(--white);
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.blog-post-content {
    padding: 40px;
}

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

.post-date,
.post-category {
    color: var(--text-light);
    font-size: 14px;
}

.post-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

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

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.blog-cta {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.cta-content-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-content-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-content {
    padding: 80px 20px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 30px;
}

.contact-detail-text h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail-text p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-detail-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.registration-info {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-description {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.submit-button-contact {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button-contact:hover {
    background-color: #d47f3a;
}

.map-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.map-placeholder {
    background-color: var(--white);
    padding: 100px 40px;
    border-radius: 10px;
    text-align: center;
    color: var(--text-light);
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-faq {
    padding: 80px 20px;
}

.faq-compact {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-compact {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item-compact h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item-compact p {
    color: var(--text-light);
    line-height: 1.8;
}

.blog-post-single {
    padding: 60px 20px;
}

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

.post-meta-single {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.post-title-single {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    line-height: 1.3;
}

.post-featured-image {
    margin-bottom: 40px;
}

.post-featured-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.lead-paragraph {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.post-content-single h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.post-content-single p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.post-footer-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.back-to-blog,
.post-cta-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.back-to-blog:hover,
.post-cta-link:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .primary-navigation {
        display: none;
    }
    
    .primary-navigation.active {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }
    
    .primary-navigation.active ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .editor-card {
        padding: 30px 20px;
    }
    
    .content-split {
        flex-direction: column;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .lead-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row-double {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        flex-direction: column;
    }
    
    .member-photo {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .service-detail-content {
        flex-direction: column;
    }
    
    .service-detail.reverse .service-detail-content {
        flex-direction: column;
    }
    
    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .post-title-single {
        font-size: 32px;
    }
    
    .post-footer-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
}