/* About Page Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.about-hero p {
    font-size: 22px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Company Story Section */
.company-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 35px;
    font-weight: 700;
    position: relative;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.highlight-item i {
    font-size: 20px;
    color: #667eea;
}

.highlight-item span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px;
    border-radius: 0 0 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.story-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.overlay-content p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* Enhanced Mission and Values Section */
.mission-values-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.mission-values-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title-enhanced {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { 
        background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    100% { 
        background: linear-gradient(45deg, #764ba2, #f093fb, #667eea);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.section-subtitle-enhanced {
    font-size: 20px;
    color: #6c757d;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: none;
}

.mission-values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Mission Card */
.mission-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.mission-card:hover::before {
    left: 100%;
}

.mission-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.mission-icon-enhanced {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.mission-icon-enhanced::before {
    content: '🎯';
    font-size: 36px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mission-icon-enhanced i {
    display: none;
}

.mission-card:hover .mission-icon-enhanced {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.card-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    text-shadow: none;
}

.card-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin: 0;
    text-shadow: none;
}

.card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    border-radius: 0 0 25px 25px;
}

/* Values Section */
.values-section {
    position: relative;
}

.values-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-shadow: none;
}

.values-header p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

.values-grid-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.12);
    border-color: #667eea;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.value-icon i {
    display: none;
}

.value-card:nth-child(1) .value-icon::before {
    content: '🤝';
    font-size: 28px;
}

.value-card:nth-child(2) .value-icon::before {
    content: '❤️';
    font-size: 28px;
}

.value-card:nth-child(3) .value-icon::before {
    content: '⭐';
    font-size: 28px;
}

.value-card:nth-child(4) .value-icon::before {
    content: '👥';
    font-size: 28px;
}

.value-icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
}

.value-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    text-shadow: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.value-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
    margin: 0;
    text-shadow: none;
}

.value-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.value-card:hover .value-glow {
    opacity: 1;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 12s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-values-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title-enhanced {
        font-size: 36px;
    }
    
    .mission-card,
    .value-card {
        padding: 30px;
    }
}

.mission-values h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.mission-values .section-subtitle {
    text-align: center;
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.mission-box, .values-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mission-box:hover, .values-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mission-box h3, .values-box h3 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-box i, .values-box i {
    font-size: 32px;
    color: #ffd700;
}

.mission-box p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.95;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.values-list li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.values-list li i {
    font-size: 18px;
    color: #ffd700;
    min-width: 20px;
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    background: white;
    position: relative;
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(102, 126, 234, 0.02) 50%, transparent 51%);
    pointer-events: none;
}

.achievements h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 70px;
    font-weight: 700;
    position: relative;
}

.achievements h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.achievement-card {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.achievement-card:hover::before {
    left: 100%;
}

.achievement-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.achievement-icon {
    font-size: 56px;
    color: #667eea;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1) rotate(5deg);
    color: #764ba2;
}

.achievement-number {
    font-size: 56px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    display: block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-text {
    font-size: 17px;
    color: #555;
    font-weight: 500;
    line-height: 1.6;
}

/* Certificates and Awards Section */
.certificates-awards {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.certificates-awards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hexagon" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,5 50,17.5 50,42.5 30,55 10,42.5 10,17.5" fill="none" stroke="%23667eea" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23hexagon)"/></svg>') repeat;
    pointer-events: none;
}

.certificates-awards h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.certificates-awards h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.certificates-awards .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.certificate-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.certificate-card:hover::before {
    transform: scaleX(1);
}

.certificate-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.certificate-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.certificate-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.certificate-card:hover .certificate-icon {
    transform: rotate(10deg) scale(1.1);
}

.certificate-info h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
}

.certificate-type {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.certificate-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.certificate-year {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Brands Section */
.brands {
    padding: 100px 0;
    background: white;
    position: relative;
}

.brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(102, 126, 234, 0.02) 50%, transparent 51%);
    pointer-events: none;
}

.brands h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
}

.brands h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.brands-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.brand-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.brand-card:hover::before {
    left: 100%;
}

.brand-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.brand-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.brand-card:hover .brand-image img {
    transform: scale(1.1);
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.brand-card:hover .brand-overlay {
    opacity: 1;
}

.brand-content {
    padding: 35px;
    position: relative;
    z-index: 2;
}

.brand-content h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.brand-card:hover .brand-content h3 {
    color: #667eea;
}

.brand-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.brand-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brand-feature {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.brand-card img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.brand-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.brand-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.service-card ul li:last-child {
    border-bottom: none;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
    padding: 30px;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.member-position {
    color: #e67e22;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 16px;
}

.member-description {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.reason-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
}

.reason-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.reason-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .mission-content {
        gap: 60px;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 48px;
    }
    
    .about-hero p {
        font-size: 20px;
    }
    
    .story-content {
        gap: 60px;
    }
    
    .mission-content {
        gap: 40px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .certificates-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }
    
    .about-hero h1 {
        font-size: 40px;
    }
    
    .about-hero p {
        font-size: 18px;
        max-width: 90%;
    }
    
    .company-story,
    .mission-values,
    .certificates-awards,
    .achievements,
    .brands,
    .services,
    .team,
    .why-choose-us {
        padding: 80px 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text h2,
    .mission-values h2,
    .certificates-awards h2,
    .achievements h2,
    .brands h2,
    .services h2,
    .team h2,
    .why-choose-us h2 {
        font-size: 32px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-box,
    .values-box {
        padding: 30px 25px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
    
    .achievement-card {
        padding: 40px 20px;
    }
    
    .achievement-number {
        font-size: 48px;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .certificate-card {
        padding: 30px 25px;
    }
    
    .certificate-header {
        gap: 15px;
    }
    
    .certificate-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .brand-content {
        padding: 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card,
    .reason-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero h1 {
        font-size: 32px;
    }
    
    .about-hero p {
        font-size: 16px;
    }
    
    .company-story,
    .mission-values,
    .certificates-awards,
    .achievements,
    .brands,
    .services,
    .team,
    .why-choose-us {
        padding: 60px 0;
    }
    
    .story-text h2,
    .mission-values h2,
    .certificates-awards h2,
    .achievements h2,
    .brands h2,
    .services h2,
    .team h2,
    .why-choose-us h2 {
        font-size: 28px;
    }
    
    .mission-box,
    .values-box {
        padding: 25px 20px;
    }
    
    .mission-box h3,
    .values-box h3 {
        font-size: 24px;
    }
    
    .achievement-card {
        padding: 30px 15px;
    }
    
    .achievement-icon {
        font-size: 48px;
    }
    
    .achievement-number {
        font-size: 42px;
    }
    
    .certificate-card {
        padding: 25px 20px;
    }
    
    .certificate-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .brand-content {
        padding: 20px;
    }
    
    .brand-content h3 {
        font-size: 22px;
    }
    
    .highlight-item {
        padding: 12px 15px;
    }
    
    .highlight-item span {
        font-size: 14px;
    }
    
    .service-icon,
    .reason-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Стили для новых секций */

/* Секция специализации компании */
.company-specialization {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.company-specialization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.specialization-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.specialization-content {
    position: relative;
    z-index: 2;
}

.main-offer {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.8s ease-out;
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.offer-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.offer-text p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #48cae4, #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.guarantee-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    animation: bounceIn 1s ease-out;
}

.guarantee-icon {
    font-size: 36px;
    color: white;
    animation: rotate 3s linear infinite;
}

.guarantee-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* Секция опыта работы */
.experience-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    position: relative;
}

.experience-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: zoomIn 0.6s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.main-stat {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2) !important;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin: 0 auto 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-text {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.experience-text p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Секция юридической информации */
.legal-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.legal-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInLeft 0.8s ease-out;
}

.legal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #48cae4, #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    flex-shrink: 0;
}

.legal-details h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: #feca57;
}

.legal-docs {
    display: grid;
    gap: 20px;
    animation: slideInRight 0.8s ease-out;
}

.doc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.doc-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.doc-label {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.8;
}

.doc-value {
    font-size: 18px;
    font-weight: 700;
    color: #feca57;
    font-family: 'Courier New', monospace;
}

/* Анимации */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Comprehensive Mobile Optimization for About Page */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .about-hero p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    /* Story Section Mobile */
    .company-story {
        padding: 60px 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text h2 {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .story-text p {
        font-size: 16px;
        text-align: left;
        margin-bottom: 20px;
    }
    
    /* Mission Values Mobile */
    .mission-values-enhanced {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .mission-card,
    .value-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .mission-card h3,
    .value-card h3 {
        font-size: 20px;
    }
    
    /* Company Specialization Mobile */
    .company-specialization,
    .experience-section,
    .legal-info {
        padding: 50px 0;
    }
    
    .main-offer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 15px;
    }
    
    .offer-text h3 {
        font-size: 22px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .legal-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .legal-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 15px;
    }
    
    /* Achievements Mobile */
    .achievements {
        padding: 50px 0;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-card {
        padding: 25px 20px;
    }
    
    /* Certificates Mobile */
    .certificates {
        padding: 50px 0;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* Ultra Mobile Optimization */
    .about-hero {
        padding: 40px 0;
    }
    
    .about-hero h1 {
        font-size: 26px;
    }
    
    .about-hero p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .company-story,
    .mission-values-enhanced,
    .company-specialization,
    .experience-section,
    .legal-info,
    .achievements,
    .certificates {
        padding: 40px 0;
    }
    
    .story-text h2,
    .section-header h2 {
        font-size: 24px;
    }
    
    .mission-card,
    .value-card,
    .achievement-card {
        padding: 20px 15px;
    }
    
    .mission-card h3,
    .value-card h3 {
        font-size: 18px;
    }
    
    .value-card h4 {
        font-size: 16px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .features-grid {
        padding: 0 5px;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .certificate-item {
        padding: 15px 10px;
    }
}

/* Стили для галереи лицензий */
.license-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.license-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.license-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.license-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    transition: color 0.3s ease;
}

.license-close:hover {
    color: #000;
}

.license-modal-content h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
    text-align: center;
}

.license-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.license-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.license-item:hover {
    transform: scale(1.05);
}

.license-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.license-item img:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Модальное окно для полноэкранного просмотра */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.modal-image {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
    transition: color 0.3s ease;
}

.image-close:hover {
    color: #ccc;
}

.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
}

.nav-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.nav-btn.prev {
    left: 20px;
}

.nav-btn.next {
    right: 20px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .license-modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .license-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .license-item img {
        height: 200px;
    }
    
    .modal-image {
        max-width: 95%;
        max-height: 80%;
    }
    
    .nav-btn {
        font-size: 18px;
        padding: 10px 15px;
    }
    
    .image-close {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
}
