/* IAPL E.I.R.L. - Sobre Nosotros CSS */

/* Base Styles */
:root {
    --primary-color: #1A56DB;
    --primary-light: #3B82F6;
    --primary-dark: #1E429F;
    --secondary-color: #0EA5E9;
    --accent-color: #06B6D4;
    --dark-color: #111827;
    --dark-secondary: #1F2937;
    --light-color: #F9FAFB;
    --gray-color: #6B7280;
    --gray-light: #E5E7EB;
    --success-color: #10B981;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-dark: linear-gradient(135deg, var(--dark-color), var(--dark-secondary));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.07);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-color);
    line-height: 1.7;
    background-color: var(--light-color);
    overflow-x: hidden;
}

.IAPL-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--gray-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-md);
}

/* Buttons */
.IAPL-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.01em;
    font-size: 1rem;
}

.IAPL-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.IAPL-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.IAPL-btn-secondary {
    background: transparent;
    color: var(--dark-color);
    border: 1px solid var(--gray-light);
}

.IAPL-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--gray-color);
}

.IAPL-btn-full {
    width: 100%;
}

/* Header */
.IAPL-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.IAPL-scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
}

.IAPL-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.IAPL-logo {
    width: 160px;
    height: 50px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.IAPL-nav ul {
    display: flex;
    gap: 40px;
}

.IAPL-nav a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.IAPL-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.IAPL-nav a:hover:after,
.IAPL-nav a.IAPL-active:after {
    width: 100%;
}

.IAPL-contact-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: var(--border-radius-md);
}

.IAPL-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.IAPL-contact-btn:after {
    display: none;
}

.IAPL-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.IAPL-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Page Hero Section */
.IAPL-page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(249,250,251,0.97) 0%, rgba(243,244,246,0.95) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.IAPL-page-hero:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(26,86,219,0.07) 0%, rgba(14,165,233,0.04) 100%);
    border-radius: 50%;
    z-index: -1;
}

.IAPL-page-hero:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(6,182,212,0.06) 0%, rgba(59,130,246,0.03) 100%);
    border-radius: 50%;
    z-index: -1;
}

.IAPL-page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.IAPL-page-hero h1 {
    margin-bottom: 1.5rem;
}

.IAPL-highlight {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.IAPL-highlight:after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(14, 165, 233, 0.2);
    z-index: -1;
}

.IAPL-page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: var(--gray-color);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: white;
}

.IAPL-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.IAPL-section-header p {
    color: var(--gray-color);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Company History Section */
.IAPL-company-history {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.IAPL-history-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.IAPL-history-text h2 {
    margin-bottom: 1.5rem;
    font-size: 2.3rem;
}

.IAPL-history-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.IAPL-mission-box, .IAPL-vision-box {
    background-color: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 25px 30px;
    margin-top: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.IAPL-mission-box:hover, .IAPL-vision-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.IAPL-mission-box h3, .IAPL-vision-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.IAPL-mission-box p, .IAPL-vision-box p {
    color: var(--dark-color);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.IAPL-history-image {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.IAPL-history-image:hover {
    transform: perspective(1000px) rotateY(0);
}

/* Team Section */
.IAPL-team-section {
    background-color: var(--light-color);
    position: relative;
}

.IAPL-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
}

.IAPL-team-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.IAPL-team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.IAPL-team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.IAPL-team-card h3 {
    font-size: 1.4rem;
    margin: 20px 20px 5px;
    color: var(--dark-color);
}

.IAPL-team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0 20px 10px;
    font-size: 1rem;
}

.IAPL-team-desc {
    margin: 0 20px 20px;
    font-size: 0.95rem;
    color: var(--gray-color);
}

/* Values Section */
.IAPL-values-section {
    background-color: white;
    position: relative;
}

.IAPL-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.IAPL-value-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
}

.IAPL-value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background-color: white;
}

.IAPL-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.IAPL-value-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.IAPL-value-card p {
    color: var(--dark-secondary);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Stats Section */
.IAPL-stats-section {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.IAPL-stats-section:before {
    content: '';
    position: absolute;
    top: -5%;
    right: -5%;
    width: 20%;
    height: 30%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.IAPL-stats-section:after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 25%;
    height: 40%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.IAPL-stats-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
    z-index: 1;
}

.IAPL-stat-item {
    flex: 1;
    padding: 20px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.IAPL-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.IAPL-stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Contact Section */
.IAPL-contact {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.IAPL-contact:before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 20%;
    height: 30%;
    background: linear-gradient(135deg, rgba(26,86,219,0.03) 0%, rgba(14,165,233,0.01) 100%);
    border-radius: 50%;
    z-index: 0;
}

.IAPL-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.IAPL-contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.IAPL-contact-info p {
    font-size: 1.15rem;
    max-width: 450px;
    margin-bottom: 2rem;
}

.IAPL-contact-details {
    margin-top: 40px;
}

.IAPL-contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.IAPL-contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 20px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.IAPL-contact-details span:last-child {
    font-size: 1.05rem;
    color: var(--dark-color);
}

.IAPL-location-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231A56DB' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.IAPL-phone-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231A56DB' viewBox='0 0 24 24'%3E%3Cpath d='M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 12h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm-4 0h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3z'/%3E%3C/svg%3E");
}

.IAPL-email-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231A56DB' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.IAPL-contact-form {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    border: 1px solid var(--gray-light);
}

.IAPL-form-group {
    margin-bottom: 25px;
}

.IAPL-form-group input,
.IAPL-form-group select,
.IAPL-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-md);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #F9FAFB;
}

.IAPL-form-group input:focus,
.IAPL-form-group select:focus,
.IAPL-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    background-color: white;
}

.IAPL-form-group input.IAPL-error,
.IAPL-form-group select.IAPL-error,
.IAPL-form-group textarea.IAPL-error {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.IAPL-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.IAPL-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

.IAPL-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-primary);
}

.IAPL-footer:after {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 25%;
    height: 40%;
    background: linear-gradient(135deg, rgba(59,130,246,0.03) 0%, rgba(37,99,235,0.01) 100%);
    border-radius: 50%;
    z-index: 0;
}

.IAPL-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.IAPL-footer-company p {
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 400px;
}

.IAPL-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.IAPL-footer-section h4 {
    margin-bottom: 25px;
    color: white;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 12px;
}

.IAPL-footer-section h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.IAPL-footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.IAPL-footer-section a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
    padding: 3px 0;
}

.IAPL-footer-section a:hover {
    color: white;
    transform: translateX(3px);
}

.IAPL-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.IAPL-footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.IAPL-social-links {
    display: flex;
    gap: 15px;
}

.IAPL-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.IAPL-social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.IAPL-facebook {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 2v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v7h-3v-7h-2v-3h2V7.5c0-1.93 1.57-3.5 3.5-3.5H19z'/%3E%3C/svg%3E");
}

.IAPL-instagram {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2zm-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6zm9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25zM12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5zm0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z'/%3E%3C/svg%3E");
}

.IAPL-linkedin {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z'/%3E%3C/svg%3E");
}

/* Animation classes */
.IAPL-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.IAPL-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .IAPL-container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .IAPL-history-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .IAPL-history-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .IAPL-contact-content,
    .IAPL-footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .IAPL-stats-wrapper {
        flex-wrap: wrap;
    }
    
    .IAPL-stat-item {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .IAPL-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        transition: left 0.3s ease;
        z-index: 999;
        padding: 40px 20px;
        box-shadow: var(--shadow-md);
    }
    
    .IAPL-nav.IAPL-active {
        left: 0;
    }
    
    .IAPL-nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .IAPL-menu-toggle {
        display: flex;
    }
    
    .IAPL-team-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .IAPL-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .IAPL-stats-wrapper {
        flex-direction: column;
    }
    
    .IAPL-stat-item {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .IAPL-footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .IAPL-footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
} 