/* Base Styles */
:root {
    --primary-color: #F08A83;
    --primary-dark: #e87a73;
    --primary-light: #f7b0ab;
    --primary-bg: #fff5f4;
    --primary-bg-dark: #ffd7d2;
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f8f9fa;
    --gray: #e9ecef;
    --gray-dark: #dee2e6;
    --success: #4CAF50;
    --warning: #FFC107;
    --danger: #F44336;
    --rounding-small: 8px;
    --rounding-medium: 12px;
    --rounding-large: 16px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --transition-slow: all 0.4s ease;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter Tight', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

p.lead {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

strong {
    color: black;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(240, 138, 131, 0.3);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(240, 138, 131, 0.4);
}

.outline-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.outline-btn:hover {
    background-color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(240, 138, 131, 0.2);
}

.icon-btn {
    gap: 10px;
    background-color: var(--primary-bg);
    color: var(--primary-color);
}

.icon-btn i {
    font-size: 28px;
}

.icon-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(240, 138, 131, 0.4);
}

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

.section-header.text-left {
    text-align: left;
    margin-left: 0;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header.text-left h2:after {
    left: 0;
    transform: none;
}

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

.logo a {
    display: block;
    font-size: 28px;
    font-weight: 700;
    position: relative;
}

.logo a:hover {
    transform: translateY(-3px);
}

.desktop-nav ul {
    display: flex;
    gap: 32px;
}

.desktop-nav a {
    display: block;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.desktop-nav a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    text-decoration: underline solid 2px;
    text-underline-offset: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1001;
    padding: 60px 32px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu ul {
    margin-bottom: 32px;
}

.mobile-menu li {
    margin-bottom: 16px;
    transform: translateX(50px);
    opacity: 0;
    transition: var(--transition-slow);
}

.mobile-menu.active li {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active li:nth-child(4) { transition-delay: 0.4s; }

.mobile-menu li a {
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 8px 0;
}

.mobile-cta {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition-delay: 0.5s;
}

.mobile-menu.active .mobile-cta {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-container {
    width: 100%;
}

.dropdown {
    background-color: var(--white);
    border-radius: var(--rounding-medium);
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.dropdown-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dropdown-header:hover {
    background-color: var(--gray-light);
}

.dropdown-header h4 {
    font-size: 18px;
    font-weight: 600;
}

.dropdown-header i {
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-header i {
    transform: rotate(45deg);
}

.dropdown-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.dropdown.active .dropdown-content {
    padding: 20px 30px 20px;
    max-height: 4500px;
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    opacity: 0;
}

.modal.active {
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: var(--rounding-medium);
    padding: 30px;
    width: 600px;
    max-width: 600px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    transform: translateY(100%);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.modal-body {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.modal-body p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.modal-close {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: var(--text-light);
    border: none;
    background: none;
    transition: var(--transition);
}

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

.image-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.image-list img {
    border-radius: 20px;
}

.highlight {
    color: var(--primary-color);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    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: 20px;
    box-shadow: 0 5px 15px rgba(240, 138, 131, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background-color: var(--primary-bg);
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 30px;
    align-items: center;
    position: relative;
}

.hero-profile {
    position: relative;
    z-index: 2;
}

.profile-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 0 auto;
}

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

.profile-circle:hover img {
    transform: scale(1.05);
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

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

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-image img {
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: translateY(-10px);
}

.shape-1, .shape-2 {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background-color: rgba(240, 138, 131, 0.2);
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background-color: rgba(240, 138, 131, 0.15);
    bottom: -30px;
    left: -30px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.contact-methods {
    display: flex;
    gap: 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--rounding-medium);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-slow);
}

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

.news-tag {
    padding: 5px 12px;
    background-color: var(--primary-bg);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.news-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.news-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.news-link {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-link a {
    transition: var(--transition);
}

.news-link a:hover {
    text-decoration: underline solid 2px;
    text-underline-offset: 4px;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: var(--white);
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    color: var(--text-dark);
    background-color: var(--gray-light);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(240, 138, 131, 0.3);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.service-card {
    position: relative;
    padding: 30px;
    background-color: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--rounding-medium);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-slow);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-bg);
    border-radius: var(--rounding-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 28px;
    transition: background-color 0.4s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
}

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

.service-card.flipped {
    transform: rotateY(180deg);
    border-color: var(--primary-light);
}

.service-card-face {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    backface-visibility: hidden;
}

.service-card-face.back {
    position: absolute;
    top: 0; left: 0;
    padding: 30px;
    transform: rotateY(180deg);
}

.service-header, .service-content {
    margin-bottom: 15px;
}

.service-prices li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-prices li i {
    color: var(--primary-color);
    font-size: 14px;
}

.service-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.service-link a {
    transition: var(--transition);
}

.service-link a:hover {
    text-decoration: underline solid 2px;
    text-underline-offset: 4px;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: var(--white);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: translateY(-10px);
}

.about-list {
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.about-list li i {
    color: var(--primary-color);
    font-size: 14px;
}

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

/* Capabilities Section */
.capabilities {
    padding: 60px 0;
    background-color: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.capabilities:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(240, 138, 131, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.capability-card {
    background-color: var(--white);
    border-radius: var(--rounding-medium);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

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

.capability-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    opacity: 0;
    background-color: var(--primary-color);
    transition: opacity 0.4s ease;
}

.capability-card:hover:before {
    opacity: 1;
}

.capability-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 28px;
    transition: transform 0.4s ease;
}

.capability-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.capability-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Why Me Section */
.why-me {
    padding: 60px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-me-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-me-image {
    position: relative;
}

.why-me-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.why-me-image:hover img {
    transform: translateY(-10px);
}

.why-me-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.point-icon:hover {
    transform: translateY(-3px);
}

.point-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.point-text p {
    color: var(--text-light);
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background-color: var(--gray-light);
}

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

.review-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: var(--rounding-medium);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
}

.review-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    opacity: 0;
    background-color: var(--primary-color);
    transition: opacity 0.4s ease;
}

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

.review-card:hover:before {
    opacity: 1;
}

.review-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.review-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.review-rating {
    color: #FFD700;
    margin-left: auto;
    display: flex;
    gap: 2px;
}

.review-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-img img {
    width: 300px;
    height: 200px; 
    object-fit: cover;
    border-radius: var(--rounding-medium);
}

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

.review-author h4 {
    font-weight: 600;
}

.review-author p {
    color: var(--text-lighter);
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.prev-btn, .next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--text-dark);
    background-color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(240, 138, 131, 0.3);
}

.reviews-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--primary-color);
}

/* Documents Section */
.documents {
    padding: 60px 0;
    background-color: var(--white);
}

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

.document-card {
    background-color: var(--white);
    border-radius: var(--rounding-medium);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-slow);
    border: 1px solid var(--gray);
}

.document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.document-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-bg);
    border-radius: var(--rounding-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
    transition: background-color 0.4s ease;
}

.document-card:hover .document-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.document-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
}

.document-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.document-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.document-link {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.document-link a {
    transition: var(--transition);
}

.document-link a:hover {
    text-decoration: underline solid 2px;
    text-underline-offset: 4px;
}

/* Footer */
.footer {
    background-color: #333;
    color: var(--white);
    padding: 20px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

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

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline solid 2px;
    text-underline-offset: 4px;
}

.info {
    display: flex;
    flex-direction: column;
}

.info-section:not(:last-child) {
    margin-bottom: 10px;
}

.info p {
    margin: 0;
}

.info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.info li i {
    color: var(--primary-color);
    font-size: 14px;
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .hero-profile {
        display: none;
    }
    
    .news-card.featured {
        grid-column: span 3;
        grid-template-columns: 1fr;
    }
    
    .news-card.featured .news-image {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .desktop-nav, 
    .header-actions .primary-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .news-card.featured {
        grid-column: span 2;
    }
    
    .about-content,
    .why-me-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 30px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .capabilities-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 26px;
    }
    
    .hero-text h1 {
        font-size: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-methods {
        flex-direction: column;
        max-width: 300px;
    }
    
    .profile-circle {
        width: 220px;
        height: 220px;
    }
    
    .tabs-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}