/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a5f7a;
    --secondary-color: #5d7a9e;
    --accent-color: #ed1c24;
    --dark-color: #1f2937;
    --text-color: #374151;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --blue-primary: #4a5f7a;
    --blue-secondary: #5d7a9e;
    --red-accent: #ed1c24;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

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

/* Header */
.site-header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    position: relative;
}

.logo img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-white {
    opacity: 1;
}

.logo-dark {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.site-header.scrolled .logo-white {
    opacity: 0;
}

.site-header.scrolled .logo-dark {
    opacity: 1;
}

.logo h1 {
    font-size: 1.5rem;
    color: white;
    font-weight: 800;
    transition: color 0.3s ease;
}

.site-header.scrolled .logo h1 {
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.site-header.scrolled .main-nav a {
    color: var(--dark-color);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: white;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

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

/* Submenu Styles */
.main-nav .has-submenu {
    position: relative;
}

.main-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 100%;
    width: max-content;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.main-nav .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .submenu li {
    display: block;
}

.main-nav .submenu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.main-nav .submenu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    left: 1.5rem;
    background-color: var(--red-accent);
    transition: width 0.3s ease;
}

.main-nav .submenu li a:hover {
    color: var(--red-accent);
}

.main-nav .submenu li a:hover::after {
    width: calc(100% - 3rem);
}

.header-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.phone-btn {
    color: white !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.site-header.scrolled .phone-btn {
    color: var(--dark-color) !important;
}

.phone-btn:hover {
    color: white !important;
}

.site-header.scrolled .phone-btn:hover {
    color: var(--secondary-color);
}

.cta-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.site-header.scrolled .mobile-menu-toggle span {
    background: var(--dark-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding: 150px 0 80px;
    background: url('../images/beautiful-view-of-hunt-hill-bridge-in-dallas-2025-02-02-19-52-52-utc.jpeg') no-repeat center center;
    background-size: cover;
    color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 95, 122, 0.4) 0%, rgba(42, 67, 101, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-stats-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--red-accent);
    color: white;
    font-weight: 700;
}

.btn-primary:hover {
    background: #d1171e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 28, 36, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: var(--red-accent);
}

.btn-secondary:hover {
    background: var(--red-accent);
    color: white;
    border-color: var(--red-accent);
}

.hero-stats-card {
    background: rgba(255, 255, 255, 0.5);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.stat-item {
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--red-accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--blue-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Trusted By Section */
.trusted-by-section {
    padding: 60px 0;
    background: var(--dark-color);
}

.trusted-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.trusted-content h3 {
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
    max-width: 200px;
    line-height: 1.4;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo-item i {
    font-size: 2.5rem;
    color: white;
}

.logo-item span {
    font-size: 0.75rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-left p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.about-award-badge {
    background: var(--red-accent);
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-award-badge i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-award-badge h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about-award-badge p {
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
    margin: 0;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.mission-icon {
    width: 50px;
    height: 50px;
    background: var(--red-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-icon i {
    font-size: 1.5rem;
    color: white;
}

.mission-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.mission-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.about-right .btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Features Dark Section */
.features-dark-section {
    padding: 100px 0;
    background: url('../images/dallas-texas-usa-skyline-2025-03-23-23-54-36-utc.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    position: relative;
    z-index: 1;
}

.features-dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.features-dark-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 95, 122, 0.4) 0%, rgba(42, 67, 101, 0.4) 100%);
    z-index: 2;
}

.features-dark-section .container {
    position: relative;
    z-index: 3;
}

.features-dark-section .section-header {
    margin-bottom: 4rem;
}

.features-dark-section .section-header h2 {
    color: white;
}

.section-subtitle-light {
    display: inline-block;
    color: var(--red-accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.features-dark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.features-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-image {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

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

.feature-list h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-list p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list ul {
    list-style: none;
}

.feature-list ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-list ul li i {
    color: var(--red-accent);
    font-size: 0.9rem;
}

.features-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item-dark {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon-red {
    width: 60px;
    height: 60px;
    background: var(--red-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-red i {
    font-size: 1.8rem;
    color: white;
}

.feature-content-dark h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-content-dark p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.features-cta-bar {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

.cta-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-bar-left i {
    width: 50px;
    height: 50px;
    background: var(--red-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.cta-bar-left div {
    display: flex;
    flex-direction: column;
}

.cta-bar-left span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-bar-left a {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.cta-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

.cta-bar-content h3 {
    color: white;
    font-size: 1.5rem;
    flex: 1;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-light);
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-card ul {
    list-style: none;
}

.feature-card ul li {
    padding: 0.5rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-card ul li i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.cta-banner {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.cta-banner h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--blue-primary);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--blue-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 0.8rem;
}

/* Expert Section */
.expert-section {
    padding: 100px 0;
    background: var(--bg-light);
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.expert-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    align-items: center;
}

.expert-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.expert-photo {
    width: 350px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.expert-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.expert-title {
    color: var(--blue-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.expert-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.expert-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.expert-stats .stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.expert-stats h4 {
    font-size: 2rem;
    color: var(--red-accent);
    margin-bottom: 0.5rem;
}

.expert-stats p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--blue-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    margin: 0;
}

.info-item a {
    color: var(--blue-primary);
    font-weight: 600;
}

.info-item a:hover {
    color: var(--secondary-color);
}

.company-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.company-info p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--blue-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: var(--blue-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 95, 122, 0.3);
}

/* Page Hero */
.page-hero {
    padding: 180px 0 100px;
    background: url('../images/financial-analyst-analysis-business-financial-repo-2025-02-18-10-09-24-utc.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 95, 122, 0.4) 0%, rgba(42, 67, 101, 0.4) 100%);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Content Section */
.about-content-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.about-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-image-block {
    position: relative;
}

.about-image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-box {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--red-accent);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Mission Vision Values Section */
.mvv-section {
    padding: 100px 0;
    background: var(--bg-light);
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.mvv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--red-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mvv-icon i {
    font-size: 2.5rem;
    color: white;
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

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

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-list-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-list-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-list-icon {
    width: 60px;
    height: 60px;
    background: var(--red-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-list-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-list-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.service-list-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.team-member-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

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

.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-secondary) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.team-member-card:hover .team-member-overlay {
    opacity: 0.9;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-primary);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--red-accent);
    color: white;
    transform: scale(1.1);
}

.team-member-info {
    padding: 2rem;
}

.team-member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.team-member-role {
    color: var(--red-accent);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-member-bio {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.team-member-credentials span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-color);
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.team-member-credentials i {
    color: var(--blue-primary);
}

/* Team Stats Section */
.team-stats-section {
    padding: 80px 0;
    background: var(--bg-light);
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.team-stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-stat-icon i {
    font-size: 2rem;
    color: white;
}

.team-stat-card h3 {
    font-size: 2.5rem;
    color: var(--red-accent);
    margin-bottom: 0.5rem;
}

.team-stat-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Why Team Section */
.why-team-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.why-team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.why-team-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.why-team-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-team-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-team-feature i {
    font-size: 1.5rem;
    color: var(--red-accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.why-team-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.why-team-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.why-team-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Services Page Section */
.services-page-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    border-color: var(--blue-primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detail-icon i {
    font-size: 2rem;
    color: white;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-detail-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--red-accent);
    font-size: 0.9rem;
}

.service-link {
    color: var(--blue-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--red-accent);
    gap: 0.8rem;
}

/* Why Services Section */
.why-services-section {
    padding: 100px 0;
    background: var(--bg-light);
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.why-services-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-services-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.why-services-text > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.why-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-service-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-service-icon {
    width: 50px;
    height: 50px;
    background: var(--red-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-service-icon i {
    font-size: 1.5rem;
    color: white;
}

.why-service-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.why-service-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.why-services-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Guarantees Section */
.guarantees-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.guarantee-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--red-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.guarantee-icon i {
    font-size: 2.5rem;
    color: white;
}

.guarantee-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

/* Service Detail Page */
.service-detail-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.service-detail-main h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.service-detail-main h3 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: var(--dark-color);
}

.service-detail-main p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-detail-image {
    width: 100%;
    margin-bottom: 2rem;
}

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

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.service-feature-item i {
    font-size: 1.5rem;
    color: var(--red-accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.service-feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.service-feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.benefit-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-color);
    font-size: 1rem;
}

.benefit-list i {
    color: var(--blue-primary);
    font-size: 1.2rem;
}

.process-steps {
    display: grid;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--red-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.service-info-list {
    list-style: none;
}

.service-info-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-info-list li:last-child {
    border-bottom: none;
}

.service-info-list i {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-primary);
    flex-shrink: 0;
}

.service-info-list strong {
    display: block;
    color: var(--dark-color);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.service-info-list span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: white;
}

.cta-card h3 {
    color: white;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-card .btn {
    width: 100%;
    margin-bottom: 0.8rem;
}

.related-services {
    list-style: none;
}

.related-services li {
    margin-bottom: 0.8rem;
}

.related-services a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-color);
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-services a:hover {
    background: var(--bg-light);
    color: var(--red-accent);
}

.related-services i {
    color: var(--red-accent);
    font-size: 0.8rem;
}

/* Documents Upload Page */
.upload-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.upload-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.upload-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.upload-info > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.upload-benefits {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.upload-benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.upload-benefit i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.upload-benefit h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.upload-benefit p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.upload-tips {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.upload-tips h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.upload-tips ul {
    list-style: none;
}

.upload-tips li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.upload-tips i {
    color: var(--red-accent);
}

.upload-form-container {
    position: sticky;
    top: 100px;
}

.upload-form-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.upload-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.upload-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.btn-upload i {
    font-size: 1.3rem;
}

.upload-info-list {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.upload-info-list h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.upload-info-list ul {
    list-style: none;
}

.upload-info-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.upload-info-list i {
    color: var(--red-accent);
    font-size: 0.9rem;
}

.document-upload-form .form-group {
    margin-bottom: 1.5rem;
}

.document-upload-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.document-upload-form input[type="text"],
.document-upload-form input[type="email"],
.document-upload-form input[type="tel"],
.document-upload-form select,
.document-upload-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.document-upload-form textarea {
    resize: vertical;
}

.file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: var(--blue-primary);
    background: rgba(30, 58, 138, 0.05);
}

.file-upload-area i {
    font-size: 3rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.file-upload-area p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.file-upload-area span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.file-item i {
    color: var(--blue-primary);
    font-size: 1.2rem;
}

.file-name {
    flex-grow: 1;
    color: var(--text-color);
    font-size: 0.95rem;
}

.file-size {
    color: var(--text-light);
    font-size: 0.85rem;
}

.remove-file {
    background: none;
    border: none;
    color: var(--red-accent);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.remove-file:hover {
    transform: scale(1.2);
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.upload-security-note {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--blue-primary);
}

.upload-security-note i {
    color: var(--blue-primary);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.upload-security-note p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Checklist Section */
.checklist-section {
    padding: 100px 0;
    background: var(--bg-light);
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.checklist-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.checklist-icon {
    width: 60px;
    height: 60px;
    background: var(--red-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.checklist-icon i {
    font-size: 1.8rem;
    color: white;
}

.checklist-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.checklist-items {
    list-style: none;
}

.checklist-items li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.checklist-items i {
    color: var(--blue-primary);
    font-size: 1.1rem;
}

.checklist-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
}

.checklist-cta p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

.checklist-cta a {
    color: var(--red-accent);
    font-weight: 600;
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: url('../images/large-group-of-young-successful-intercultural-offi-2025-03-31-04-11-13-utc.JPG') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 95, 122, 0.4) 0%, rgba(42, 67, 101, 0.4) 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.footer-stat h4 {
    font-size: 1.8rem;
    color: var(--red-accent);
    margin-bottom: 0.3rem;
}

.footer-stat p {
    font-size: 0.85rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-list i {
    color: var(--red-accent);
    margin-top: 3px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .expert-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .expert-placeholder {
        margin: 0 auto;
    }

    .trusted-content {
        flex-direction: column;
        text-align: center;
    }

    .trusted-content h3 {
        max-width: 100%;
    }

    .trusted-logos {
        justify-content: center;
    }

    .about-image-grid {
        grid-template-columns: 1fr;
    }

    .about-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
    }

    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-services-content {
        grid-template-columns: 1fr;
    }

    .why-services-grid {
        grid-template-columns: 1fr;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-team-content {
        grid-template-columns: 1fr;
    }

    .features-dark-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-bar-left {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav,
    .header-cta .cta-btn {
        display: none;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid #eee;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 1rem;
        color: var(--dark-color) !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-stats-wrapper {
        justify-content: center;
    }

    .hero-stats-card {
        width: 100%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .about-section,
    .why-choose-section,
    .services-section,
    .expert-section,
    .contact-section {
        padding: 60px 0;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .expert-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: var(--bg-light);
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-info-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-info-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.contact-info-link {
    color: var(--blue-primary);
    font-weight: 600;
    font-size: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.contact-info-link:hover {
    color: var(--red-accent);
}

/* Contact Features */
.contact-features {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-feature-item i {
    font-size: 1.5rem;
    color: var(--red-accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.contact-stat {
    text-align: center;
}

.contact-stat h4 {
    font-size: 2.5rem;
    color: var(--red-accent);
    margin-bottom: 0.5rem;
}

.contact-stat p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Form Enhancements */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

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

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.map-container {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.map-info p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin: 0;
}

.map-info strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-item h3 i {
    color: var(--red-accent);
    font-size: 1.3rem;
}

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

/* Booking Page Styles */
.booking-info-section {
    padding: 80px 0;
    background: var(--bg-light);
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.booking-info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.booking-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.booking-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.booking-info-icon i {
    font-size: 2rem;
    color: white;
}

.booking-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.booking-info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Booking Main Section */
.booking-main-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.booking-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-sidebar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.booking-sidebar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--blue-primary);
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.appointment-types {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.appointment-type {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.appointment-type i {
    font-size: 1.5rem;
    color: var(--red-accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.appointment-type h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.appointment-type p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.booking-contact-card {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: white;
}

.booking-contact-card h3 {
    color: white;
}

.booking-contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.booking-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

.booking-contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.booking-contact-link i {
    font-size: 1.3rem;
}

/* Calendly Placeholder */
.booking-calendar-wrapper {
    position: sticky;
    top: 100px;
}

.booking-calendar-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 700px;
    overflow: hidden;
}

.calendly-placeholder {
    padding: 4rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 700px;
}

.calendly-placeholder-icon {
    width: 120px;
    height: 120px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.calendly-placeholder-icon i {
    font-size: 4rem;
    color: var(--blue-primary);
}

.calendly-placeholder h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.calendly-placeholder > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.calendly-instructions {
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.calendly-steps {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2rem;
    padding-left: 1.5rem;
}

.calendly-steps li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.calendly-example {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    max-width: 500px;
}

.calendly-example p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.calendly-example code {
    display: block;
    background: white;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--red-accent);
    overflow-x: auto;
}

/* Preparation Section */
.preparation-section {
    padding: 100px 0;
    background: var(--bg-light);
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.preparation-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.preparation-icon {
    width: 60px;
    height: 60px;
    background: var(--red-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.preparation-icon i {
    font-size: 1.8rem;
    color: white;
}

.preparation-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.preparation-card ul {
    list-style: none;
}

.preparation-card li {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
}

.preparation-card li:before {
    content: '•';
    color: var(--blue-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.preparation-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--blue-primary);
}

.preparation-note i {
    font-size: 2rem;
    color: var(--blue-primary);
    flex-shrink: 0;
}

.preparation-note p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-card > p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.testimonial-author strong {
    color: var(--dark-color);
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Adjustments for Booking Page */
@media (max-width: 1200px) {
    .booking-content {
        grid-template-columns: 350px 1fr;
    }
}

@media (max-width: 1024px) {
    .booking-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-content {
        grid-template-columns: 1fr;
    }

    .booking-calendar-wrapper {
        position: static;
    }

    .preparation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .booking-info-grid {
        grid-template-columns: 1fr;
    }

    .preparation-grid {
        grid-template-columns: 1fr;
    }

    .calendly-placeholder {
        padding: 3rem 1.5rem;
    }
}

/* Responsive Adjustments for Contact Page */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .upload-content {
        grid-template-columns: 1fr;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-stats {
        grid-template-columns: 1fr;
    }

    .map-info {
        flex-direction: column;
        text-align: center;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .team-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
