/* --- 1. Global Reset & Typography --- */
:root {
    /* Premium corporate color palette */
    --color1: #002D72;  /* Deep corporate blue */
    --color2: #004B98;  /* Rich business blue */
    --color3: #0063BE;  /* Primary brand blue */
    --color4: #2B8AE2;  /* Modern accent blue */
    --color5: #76B3EF;  /* Light interactive */
    
    /* Neutral tones */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    --primary-color: var(--color3);
    --secondary-color: var(--color1);
    --accent-color: var(--color4);
    
    --light-bg: var(--gray-50);
    --dark-bg: var(--color1);
    --white: #ffffff;
    --font-stack: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --footer-bg: var(--gray-900);
    --text: var(--white);
    --text-dark: var(--gray-800);
    --text-muted: var(--gray-500);
    --border-color: var(--gray-200);
    --gap: 1rem;
    --max-width: 1400px;
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
}

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

/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Base transitions and animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.5s ease-out;
}

/* Stagger children animations */
.values-grid {
    --stagger: 100ms;
}

.values-grid .value-item {
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

.values-grid .value-item:nth-child(1) { animation-delay: calc(var(--stagger) * 1); }
.values-grid .value-item:nth-child(2) { animation-delay: calc(var(--stagger) * 2); }
.values-grid .value-item:nth-child(3) { animation-delay: calc(var(--stagger) * 3); }
.values-grid .value-item:nth-child(4) { animation-delay: calc(var(--stagger) * 4); }
.values-grid .value-item:nth-child(5) { animation-delay: calc(var(--stagger) * 5); }

/* Smooth transitions */
a, button, .btn, .value-item, .service-list li, .why-choose-list li {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover lift effect */
.btn:hover, .value-item:hover {
    transform: translateY(-2px);
}

body {
    font-family: var(--font-stack);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    width: 100%;
}

h1, h2, h3 {
    margin-bottom: 1em;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--gray-900);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--gray-900);
    margin-bottom: 1.5em;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.center-text h2::after {
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 1.75em;
    font-size: var(--text-lg);
    color: var(--gray-600);
    line-height: 1.8;
    font-weight: 400;
}

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

a:hover {
    color: var(--color4);
}

/* --- 2. Utility Classes --- */
.section-padding {
    padding: clamp(4rem, 10vh, 8rem) 0;
}

.section-padding-large {
    padding: clamp(6rem, 15vh, 12rem) 0;
}

.light-bg {
    background-color: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.dark-bg {
    background-color: var(--gray-900);
    color: var(--white);
}

.dark-bg h2 {
    color: var(--white);
}

.dark-bg h2::after {
    background: var(--color4);
}

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

.two-column-layout {
    display: flex;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: flex-start;
}

.content-block {
    flex: 1;
    min-width: 0;
}

.content-block + .content-block {
    margin-top: 0;
}

/* --- 3. Header & Navigation --- */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    transition: padding 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 35px;
    width: auto;
}

.logo h1 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.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);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-weight: 600;
    color: var(--primary-color);
    align-self: center;
    display: block;
    padding: 0.5rem;
}

.main-nav a:hover {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

.main-nav .primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(4, 104, 191, 0.3); 
}

.main-nav .primary-btn:hover {
    background-color: var(--color4);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(4, 138, 191, 0.4);
}  

/* --- 4. Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    color: var(--white);
    letter-spacing: 0.02em;
    font-size: var(--text-base);
    border: 1px solid transparent;
    position: relative;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 99, 190, 0.1);
}

.primary-btn:hover {
    background-color: var(--color2);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 99, 190, 0.2);
}

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

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
}

.large-btn {
    padding: 1.25rem 2.75rem;
    font-size: var(--text-lg);
}

/* --- 5. Hero Section --- */
.hero-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    text-align: center;
    padding: clamp(8rem, 20vh, 12rem) 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-200);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 99, 190, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 99, 190, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.hero-text {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1em;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.hero-text p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-dark);
    opacity: 0.9;
}

.hero-section .cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--color4));
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-section a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--color4), var(--primary-color));
}

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

/* --- 6. Core Values Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns layout */
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.4s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--gray-200);
}

.value-item:hover::before {
    height: 100%;
}

.icon-blue {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.value-item:hover .icon-blue {
    transform: scale(1.1);
}

.value-item h3 {
    font-size: var(--text-xl);
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.value-item p {
    color: var(--text-dark);
    font-size: var(--text-base);
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    line-height: 1.6;
}

/* --- 7. Services & Why Choose Us Lists --- */
.service-list, .why-choose-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-list li, .why-choose-list li {
    padding: 1.25rem;
    margin-bottom: 1rem;
    font-size: var(--text-base);
    display: flex;
    align-items: flex-start;
    background: var(--white);
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-content, .choose-content {
    flex: 1;
}

.service-content h3, .choose-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.35rem;
    font-size: var(--text-lg);
    font-weight: 600;
}

.service-content p, .choose-content p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    margin-bottom: 0;
    line-height: 1.5;
}

.service-list li:hover, .why-choose-list li:hover {
    transform: translateY(-2px);
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon, .check-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 99, 190, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 99, 190, 0.1);
}

.service-list li:hover .service-icon,
.why-choose-list li:hover .check-icon {
    transform: scale(1.1);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 99, 190, 0.2);
}

.service-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-list li:hover::before {
    transform: scaleY(1);
}

.why-choose-list {
    margin-bottom: 30px;
}

/* === Footer === */
.site-footer {
  background: var(--color2);
  color: var(--text);
  padding: 40px 20px;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer-left { flex: 1; text-align: left; }
.footer-title {
  margin: 0 0 14px 0;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
}

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--white);
}
.icon {
  width: 18px;
  height: 18px;
  fill: var(--accent-color);
  opacity: 0.95;
}
.contact-link {
  color: var(--white);
  text-decoration: underline;
}
.contact-link:hover { 
    color: var(--accent-color);
    text-decoration: underline;
}

.tech-stack-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.tech-stack-icons i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.tech-stack-icons i:hover {
    opacity: 1;
    transform: translateY(-5px);
    color: var(--accent-color);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-list li {
    padding: 1.25rem;
    font-size: var(--text-base);
    display: flex;
    align-items: flex-start;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .service-list {
        grid-template-columns: repeat(3, 1fr); /* 3 cards per row on smaller screens */
    }
}

@media (max-width: 768px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablets */
    }
}

@media (max-width: 480px) {
    .service-list {
        grid-template-columns: 1fr; /* 1 card per row on mobile */
    }
}

.service-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.service-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(0, 99, 190, 0.1);
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-list li:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(360deg);
}

.footer-right {
    align-self: center;
    color: var(--white);
    font-size: 0.85rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.5rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0.5rem;
    line-height: 1;
}

.close-modal:hover {
    color: var(--gray-900);
    transform: scale(1.1);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-size: var(--text-base);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 99, 190, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info .contact-list {
    list-style: none;
    padding: 0;
}

.contact-info .contact-item {
    margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.5rem 0.75rem;
    }
}
/* --- Responsive Design --- */
@media (max-width: 1024px) {
    :root {
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
        --text-2xl: 1.5rem;
        --text-xl: 1.25rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .two-column-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

    .hero-section {
        padding: clamp(6rem, 15vh, 10rem) 1.5rem;
    }

    .hero-text h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }

    .hero-section {
        padding: 6rem 1rem 4rem;
    }

    .hero-text h2 {
        font-size: clamp(1.6rem, 3.5vw, 2rem);
        margin-bottom: 0.75em;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .main-header {
        position: fixed;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
    }

    .nav-content {
        padding: 0.75rem 1rem;
        position: relative;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .logo-img {
        height: 30px;
    }

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

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

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

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

    .main-nav a {
        display: block;
        padding: 0.75rem;
        border-radius: 4px;
    }

    .main-nav a:hover {
        background-color: var(--gray-50);
    }

    .value-item {
        padding: 2rem 1.5rem;
    }

    .service-list, .why-choose-list {
        grid-template-columns: 1fr;
    }

    .service-list li, .why-choose-list li {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-content h3, .choose-content h3 {
        font-size: var(--text-base);
    }

    .service-content p, .choose-content p {
        font-size: var(--text-sm);
    }

    .service-icon, .check-icon {
        font-size: 1.2rem;
        padding: 0.75rem;
        margin-right: 1rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .nav-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .main-nav ul {
        gap: 0.75rem;
    }

    .main-nav .primary-btn {
        width: 100%;
        margin-top: 0.5rem;
        padding: 0.75rem 1.5rem;
    }

    .hero-section {
        padding: 5rem 1rem 3rem;
    }

    .hero-text h2 {
        font-size: clamp(1.4rem, 3vw, 1.8rem);
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .footer-right {
        align-self: flex-start;
        text-align: left;
        width: 100%;
    }

    .service-list li, .why-choose-list li {
        font-size: 0.95rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .service-icon, .check-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1.2rem;
        margin-right: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-item {
        padding: 1.5rem 1rem;
    }

    h2 {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: 1.25em;
    }

    p {
        font-size: 0.95rem;
        margin-bottom: 1.5em;
    }
}
