* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    text-align: justify;
}

header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 0.7rem 0;
    font-size: 0.9rem;
}

.header-top-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

.header-top-content > div {
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #2c3e50;
}

.logo-accent {
    background: linear-gradient(135deg, #a78bfa 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #6634db;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #6634db;
}

nav a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    position: relative;
}

nav a:hover {
    color: #a78bfa;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #a78bfa;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 900px;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: slideInUp 0.8s ease-out;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s;
    border-radius: 50%;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.5);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #6634db 0%, #a78bfa 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 52, 219, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 52, 219, 0.4);
    background: linear-gradient(135deg, #5527cc 0%, #9d7ce8 100%);
}

section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #6634db 0%, #a78bfa 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: justify;
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 1rem auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid #6634db;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 52, 219, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 52, 219, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    text-align: justify;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stats-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 5rem 1rem;
    box-sizing: border-box;
}

.stats-section h2 {
    color: white;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.stat-item {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 52, 219, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.value-card p {
    text-align: justify;
}

.clients-section {
    background: #f8f9fa;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 5rem 1rem;
    box-sizing: border-box;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.clients-section h2,
.clients-section .section-subtitle {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.client-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.client-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 52, 219, 0.2);
    color: #6634db;
}

.cta-section {
    background: linear-gradient(135deg, #6634db 0%, #8963fd 100%);
    color: white;
    text-align: center;
    border-radius: 0;
    padding: 5rem 2rem;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 5rem;
    margin-bottom: 5rem;
    box-sizing: border-box;
}

.cta-section > *:not(.services-grid):not(.btn) {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .services-grid,
.cta-section .values-grid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.cta-section h2 {
    color: white;
}

.cta-section h2::after {
    background: white;
}

.contact-form {
    max-width: 700px;
    margin: 3rem auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

input, textarea, select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.3s;
    font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #6634db;
    box-shadow: 0 0 0 3px rgba(102, 52, 219, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #6634db;
}

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #a78bfa;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #a78bfa;
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.8;
}

.page {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Blog Styles */
.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #6634db;
    color: #6634db;
}

.filter-btn.active {
    background: linear-gradient(135deg, #6634db 0%, #8963fd 100%);
    color: white;
    border-color: transparent;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 52, 219, 0.2);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #6634db 0%, #8963fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.blog-card-content {
    padding: 2rem;
}

.blog-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(102, 52, 219, 0.1);
    color: #6634db;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-card h3 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #7f8c8d;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    padding: 0.8rem 1.2rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s;
}

.page-btn:hover {
    border-color: #6634db;
    color: #6634db;
}

.page-btn.active {
    background: linear-gradient(135deg, #6634db 0%, #8963fd 100%);
    color: white;
    border-color: transparent;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.blog-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 0;
}

.blog-modal-content {
    background: white;
    width: 90%;
    max-width: 900px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    margin: 2rem auto;
    animation: slideUp 0.3s ease-out;
    position: relative;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-blog-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10;
}

.close-blog-modal:hover {
    background: rgba(0, 0, 0, 0.8);
}

.blog-modal-body {
    padding: 3rem;
}

.blog-modal-header {
    margin-bottom: 2rem;
}

.blog-modal-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-modal-meta {
    display: flex;
    gap: 2rem;
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.blog-modal-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #6634db 0%, #8963fd 100%);
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
}

.blog-modal-content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    text-align: justify;
}

.blog-modal-content-text h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
    text-align: left;
}

.blog-modal-content-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.blog-modal-content-text ul,
.blog-modal-content-text ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.blog-modal-content-text li {
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .header-top-content {
        text-align: center;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    nav {
        padding: 0.8rem 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 5rem 0 2rem;
        box-shadow: -5px 0 25px rgba(0,0,0,0.2);
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    nav ul.mobile-active {
        right: 0;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    nav ul li a {
        display: block;
        padding: 1.3rem 2rem;
        color: #2c3e50;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s;
    }

    nav ul li a:hover {
        background: linear-gradient(90deg, rgba(102, 52, 219, 0.05) 0%, transparent 100%);
        padding-left: 2.5rem;
        color: #6634db;
    }

    nav ul li:first-child {
        border-top: 1px solid #f0f0f0;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .services-grid, .values-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .slider-container {
        height: 400px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stat-item {
        padding: 1.5rem 0.5rem;
        min-height: 120px;
    }

    section {
        padding: 3rem 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }

    .blog-modal-body {
        padding: 2rem 1.5rem;
    }

    .blog-modal-title {
        font-size: 1.8rem;
    }

    .blog-modal-image {
        height: 250px;
        font-size: 4rem;
    }
}

/* Additional text justification overrides */
section p {
    text-align: justify;
}

.contact-info-card p {
    text-align: center;
}

.footer-section p {
    text-align: left;
}

.slide-content p {
    text-align: center;
}

.cta-section p {
    text-align: center;
}

.blog-modal-meta {
    text-align: left;
}

.blog-meta {
    text-align: left;
}

/* Additional responsive adjustments for stats section */
@media (max-width: 480px) {
    .stats-section {
        padding: 3rem 0.5rem;
    }
    
    .stats-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .stat-item {
        padding: 1rem 0.25rem;
        min-height: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
}

@media (min-width: 1400px) {
    .stats-grid {
        max-width: 1200px;
    }
}

/* Ensure proper spacing and full-width for colored sections */
.stats-section + section,
.clients-section + section,
.cta-section + section {
    margin-top: 0;
    padding-top: 5rem;
}

section + .stats-section,
section + .clients-section,
section + .cta-section {
    margin-top: 0;
}

/* Mobile adjustments for full-width sections */
@media (max-width: 768px) {
    .clients-section {
        padding: 3rem 1rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    
    .stats-section {
        padding: 3rem 1rem;
    }
    
    .clients-grid {
        padding: 0 1rem;
    }
    
    .cta-section .services-grid,
    .cta-section .values-grid {
        padding: 0 1rem;
    }
}

/* Objectives Section - Full Width */
.objectives-section {
    background: #f8f9fa;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 5rem 2rem;
    box-sizing: border-box;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.objectives-section h2,
.objectives-section .section-subtitle {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.objectives-section .values-grid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .objectives-section {
        padding: 3rem 1rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    
    .objectives-section .values-grid {
        padding: 0 1rem;
    }
}