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

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

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.ab-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.ab-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.ab-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.ab-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ab-logo {
    width: 50px;
    height: 50px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.ab-company-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ab-company-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.ab-company-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    line-height: 1;
    letter-spacing: 0.02em;
}

.ab-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.ab-nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 20px;
    border-radius: 25px;
}

.ab-nav-menu a:hover,
.ab-nav-active {
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

.ab-nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.ab-main {
    margin-top: 100px;
}

.ab-hero-about {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.ab-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.ab-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ab-hero-title .highlight {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.ab-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.ab-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.ab-section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.ab-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ab-company-intro {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.ab-intro-text {
    
}

.ab-intro-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.ab-intro-highlights {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.ab-highlight-item {
    text-align: center;
}

.ab-highlight-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
}

.ab-highlight-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.ab-intro-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ab-management-team {
    padding: 80px 0;
    background-color: #ffffff;
}

.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.ab-team-member {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.ab-member-photo {
    width: 150px !important;
    height: 150px !important;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #ff6b35;
    display: block;
    max-width: 150px;
    max-height: 150px;
}

.ab-member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.ab-member-position {
    font-size: 1rem;
    color: #ff6b35;
    font-weight: 500;
    margin-bottom: 15px;
}

.ab-member-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.ab-company-values {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.ab-values-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.ab-values-list {
    display: grid;
    gap: 25px;
}

.ab-value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ab-value-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.ab-value-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.ab-value-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.ab-values-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ab-certifications {
    padding: 80px 0;
    background-color: #ffffff;
}

.ab-cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.ab-cert-item {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab-cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.ab-cert-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.ab-cert-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.ab-cert-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.ab-milestones {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ab-milestones-header {
    text-align: center;
    margin-bottom: 60px;
}

.ab-btn-history {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.ab-btn-history:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.ab-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.ab-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e);
    transform: translateX(-50%);
}

.ab-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.ab-timeline-item:nth-child(odd) {
    flex-direction: row;
}

.ab-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.ab-timeline-year {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.ab-timeline-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 30px;
    position: relative;
}

/* .ab-timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    transform: translateY(-50%);
}

.ab-timeline-item:nth-child(odd) .ab-timeline-content::before {
    left: -24px;
    border-right-color: white;
}

.ab-timeline-item:nth-child(even) .ab-timeline-content::before {
    right: -24px;
    border-left-color: white;
} */

.ab-timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.ab-timeline-content p {
    color: #666;
    line-height: 1.6;
}

.ab-cta-about {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.ab-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.ab-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ab-cta-highlight {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab-cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.ab-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.ab-btn-cta-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.ab-btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.ab-btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 33px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.ab-btn-cta-secondary:hover {
    background: white;
    color: #333;
}

.ab-footer {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 80px 0 30px;
}

.ab-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.ab-footer-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ab-footer-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 20px 0 30px;
    font-size: 1rem;
}

.ab-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ab-contact-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ab-contact-item span {
    color: #95a5a6;
    min-width: 70px;
    font-weight: 500;
}

.ab-contact-item a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.ab-contact-item a:hover {
    color: #ff6b35;
}

.ab-footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c3e50;
}

.ab-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-footer-links a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.ab-footer-links a:hover {
    color: #ff6b35;
}

.ab-footer-address {
    color: #7f8c8d;
    line-height: 1.6;
    font-style: normal;
    font-size: 1rem;
}

.ab-footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
    text-align: center;
    color: #95a5a6;
}

.ab-breadcrumb {
    padding: 20px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.ab-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ab-breadcrumb-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ab-breadcrumb-link:hover {
    color: #ff6b35;
}

.ab-breadcrumb-separator {
    color: #999;
    font-size: 12px;
}

.ab-breadcrumb-current {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
}

.ab-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-align: center;
}

.ab-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ab-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.ab-timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.ab-timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e);
}

.ab-timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.ab-timeline-item:nth-child(odd) {
    flex-direction: row;
}

.ab-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}



.ab-timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.ab-timeline-content:hover {
    transform: translateY(-5px);
}

.ab-timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.ab-timeline-item:nth-child(odd) .ab-timeline-content::before {
    left: -10px;
}

.ab-timeline-item:nth-child(even) .ab-timeline-content::before {
    right: -10px;
}

.ab-timeline-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.ab-timeline-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ab-timeline-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    border-radius: 50%;
    margin-top: 10px;
}

.ab-timeline-icon img {
    width: 24px;
    height: 24px;
}

.ab-milestones {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
}

.ab-milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.ab-milestone-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ab-milestone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.ab-milestone-card:hover {
    transform: translateY(-10px);
}

.ab-milestone-icon {
    margin-bottom: 20px;
}

.ab-milestone-icon img {
    width: 64px;
    height: 64px;
}

.ab-milestone-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 10px;
    line-height: 1;
}

.ab-milestone-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.ab-milestone-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.ab-achievements {
    padding: 100px 0;
    background: white;
}

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

.ab-achievement-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ab-achievement-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.ab-achievement-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab-achievement-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.ab-achievement-content {
    flex: 1;
}

.ab-achievement-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.ab-achievement-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.ab-achievement-year {
    font-size: 0.8rem;
    color: #ff6b35;
    font-weight: 600;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* Privacy Notice */
.ab-privacy-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
}

.ab-privacy-notice.show {
    transform: translateY(0);
}

.ab-privacy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.ab-privacy-text {
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.5;
    flex: 1;
}

.ab-privacy-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ab-privacy-link:hover {
    color: #f7931e;
}

.ab-privacy-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.ab-btn-accept {
    padding: 10px 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ab-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.ab-btn-settings {
    padding: 10px 25px;
    background: transparent;
    color: #2c3e50;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ab-btn-settings:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 90px;
    }
    
    .ab-container {
        padding: 0 30px;
    }
    
    .ab-nav {
        padding: 20px 30px;
    }
    
    .ab-brand {
        gap: 10px;
    }
    
    .ab-logo {
        width: 40px;
        height: 40px;
    }
    
    .ab-company-main {
        font-size: 1.1rem;
    }
    
    .ab-company-sub {
        font-size: 0.8rem;
    }
    
    .ab-nav-menu {
        display: none;
    }
    
    .ab-nav-toggle {
        display: flex;
    }
    
    .ab-main {
        margin-top: 85px;
    }
    
    .ab-hero-title {
        font-size: 2rem;
    }
    
    .ab-hero-subtitle {
        font-size: 1rem;
    }
    
    .ab-section-title {
        font-size: 2rem;
    }
    
    .ab-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ab-intro-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .ab-team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ab-values-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ab-values-list {
        margin-top: 30px;
    }
    
    .ab-cert-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ab-timeline::before {
        left: 30px;
    }
    
    .ab-timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .ab-timeline-year {
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
        margin-right: 20px;
    }
    
    .ab-timeline-content {
        margin: 0;
    }
    
    .ab-timeline-content::before {
        display: none;
    }
    
    .ab-cta-title {
        font-size: 2rem;
    }
    
    .ab-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ab-btn-cta-primary,
    .ab-btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .ab-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab-breadcrumb-nav {
        flex-wrap: wrap;
        gap: 5px;
    }

    .ab-hero-title {
        font-size: 2rem;
    }

    .ab-hero-subtitle {
        font-size: 1rem;
    }

    .ab-timeline-container::before {
        left: 20px;
    }

    .ab-timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 40px;
    }

    .ab-timeline-year {
        flex: none;
        width: 80px;
        padding: 15px;
        font-size: 1.2rem;
    }

    .ab-timeline-content::before {
        left: -30px !important;
        right: auto !important;
    }

    .ab-milestones-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ab-achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ab-achievement-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .ab-hero-about {
        padding: 40px 0;
    }
    
    .ab-company-intro,
    .ab-management-team,
    .ab-company-values,
    .ab-certifications,
    .ab-milestones,
    .ab-cta-about {
        padding: 60px 0;
    }
    
    .ab-hero-title {
        font-size: 1.8rem;
    }
    
    .ab-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .ab-section-title {
        font-size: 1.8rem;
    }
    
    .ab-section-description {
        font-size: 1rem;
    }
    
    .ab-team-member {
        padding: 25px 20px;
    }
    
    .ab-member-photo {
        width: 120px !important;
        height: 120px !important;
        display: block;
        max-width: 120px;
        max-height: 120px;
        margin: 0 auto 20px;
    }
    
    .ab-value-item {
        gap: 15px;
    }
    
    .ab-value-icon {
        font-size: 1.5rem;
    }
    
    .ab-timeline-year {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
        margin-right: 15px;
    }
    
    .ab-timeline-content {
        padding: 20px;
    }
    
    .ab-cta-title {
        font-size: 1.6rem;
    }
    
    .ab-cta-description {
        font-size: 1rem;
    }
} 