/* RO Technology Page Specific Styles */

.ro-hero {
    background: linear-gradient(rgba(10, 44, 94, 0.7), rgba(10, 44, 94, 0.8)), url('../images/导航背景-技术.jpg') no-repeat center center;
    background-size: cover;
}

/* Commitment Section */
.commitment-section {
    padding: 100px 0;
    background-color: white;
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.commitment-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.commitment-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.commitment-img:hover {
    transform: scale(1.02);
}

.commitment-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

/* RO Process Section */
.ro-process {
    padding: 100px 0;
    background-color: #f0f8ff;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.process-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.process-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat {
    text-align: center;
    flex: 1;
    padding: 20px;
}

.stat h3 {
    color: #0a2c5e;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
    white-space: nowrap;
    word-spacing: normal;
}

.stat p {
    color: #666;
    font-size: 16px;
    font-weight: 600;
}

.process-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-img:hover {
    transform: scale(1.05);
}

/* RO Comparison */
.ro-comparison {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.ro-comparison h3 {
    color: #0a2c5e;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.comparison-item {
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #e0e7ff;
}

.comparison-item.ro-item {
    background-color: #e6f2ff;
    border-color: #4dabf7;
    position: relative;
    overflow: hidden;
}

.comparison-item.ro-item:before {
    content: 'BETTER';
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: #4dabf7;
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.comparison-item h4 {
    color: #0a2c5e;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-item ul {
    list-style-type: none;
}

.comparison-item li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 16px;
    border-bottom: 1px dashed #e0e7ff;
}

.comparison-item li:last-child {
    border-bottom: none;
}

.comparison-item li:before {
    content: "✕";
    color: #ff6b6b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.comparison-item.ro-item li:before {
    content: "✓";
    color: #4dabf7;
}

/* Removes Section */
.removes-section {
    padding: 100px 0;
    background-color: white;
}

.removes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.removes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.removes-item {
    display: flex;
    align-items: flex-start;
    background-color: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #4dabf7;
    transition: transform 0.3s, box-shadow 0.3s;
}

.removes-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.removes-item i {
    font-size: 30px;
    color: #4dabf7;
    margin-right: 20px;
    flex: 0 0 40px;
}

.removes-item h4 {
    color: #0a2c5e;
    font-size: 20px;
    margin-bottom: 8px;
}

.removes-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.removes-image .image-placeholder {
    background-color: #e6f2ff;
    border-radius: 10px;
    padding: 60px 30px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0a2c5e;
}

.removes-image .image-placeholder i {
    font-size: 100px;
    margin-bottom: 20px;
    color: #4dabf7;
}

.removes-image .image-placeholder p {
    font-size: 18px;
    font-weight: 600;
}

/* Why RO Section */
.why-ro-section {
    padding: 100px 0;
    background-color: #f0f8ff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 0;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: #e6f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #4dabf7;
    font-size: 36px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: #4dabf7;
    color: white;
    transform: scale(1.1);
}

.benefit-img {
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
    object-fit: cover;
}

.benefit-card h3 {
    color: #0a2c5e;
    font-size: 22px;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Experience Banner */
.experience-banner {
    padding: 100px 0;
    background-color: #0a2c5e;
    color: white;
    text-align: center;
}

.banner-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-buttons .btn {
    display: inline-block;
    background-color: #4dabf7;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.banner-buttons .btn:hover {
    background-color: #339af0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.banner-buttons .btn-outline {
    background-color: transparent;
    border: 2px solid #4dabf7;
    color: #4dabf7;
}

.banner-buttons .btn-outline:hover {
    background-color: #4dabf7;
    color: white;
}


/* Process Flows Section */
.flows-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 0;
    max-width: 100%;
    padding: 0;
}

.flows-grid .flow-item:nth-child(1),
.flows-grid .flow-item:nth-child(2),
.flows-grid .flow-item:nth-child(3),
.flows-grid .flow-item:nth-child(4) {
    grid-column: span 1;
}

.flow-item {
    background-color: #f8fafc;
    border-radius: 0;
    padding: 30px;
    text-align: center;
    border: 1px solid #e0e7ff;
    border-collapse: collapse;
    transition: transform 0.3s, box-shadow 0.3s;
}

.flow-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #4dabf7;
    z-index: 1;
}

.flow-icon {
    width: 70px;
    height: 70px;
    background-color: #e6f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4dabf7;
    font-size: 30px;
}

.flow-img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.flow-item h3 {
    color: #0a2c5e;
    font-size: 20px;
    margin-bottom: 15px;
}

.flow-item p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.flow-diagram {
    max-width: 100%;
    padding: 0;
}

.flow-diagram .image-placeholder {
    background-color: #e6f2ff;
    border-radius: 0;
    padding: 60px 30px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0a2c5e;
    border: 2px dashed #4dabf7;
    border-top: none;
    border-bottom: none;
}

.flow-diagram .image-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    color: #4dabf7;
}

.flow-diagram .image-placeholder p {
    font-size: 18px;
    font-weight: 600;
}

/* Responsive Styles for RO Technology Page */
@media (max-width: 992px) {
    .commitment-grid,
    .process-content,
    .removes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 20px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .banner-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .process-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .removes-item {
        flex-direction: column;
        text-align: center;
    }
    
    .removes-item i {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .experience-banner h2 {
        font-size: 30px;
    }
    
    .flows-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flow-item {
        border-radius: 10px;
        border: 1px solid #e0e7ff;
    }

    .flow-diagram .image-placeholder {
        border-radius: 10px;
        border: 2px dashed #4dabf7;
    }
}

@media (max-width: 576px) {
    .commitment-section,
    .ro-process,
    .removes-section,
    .why-ro-section,
    .experience-banner,
    .process-flows {
        padding: 70px 0;
    }
    
    .commitment-text h2,
    .ro-comparison h3,
    .experience-banner h2 {
        font-size: 26px;
    }
    
    .benefit-card,
    .flow-item {
        padding: 25px 20px;
    }
    
    .removes-item {
        padding: 20px;
    }
    
    .ro-comparison {
        padding: 25px;
    }
}

/* Advantages Section - Same as homepage */
.advantages-section {
    padding: 10px 0;
    background-color: #3d3b50;
}

.advantages-title {
    color: white;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.advantages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.advantage-card {
    background-color: transparent;
    border-radius: 0;
    padding: 15px 12px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.advantage-card:hover {
    transform: translateY(-10px);
    background-color: transparent;
    box-shadow: none;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(130, 161, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: #82a140;
    font-size: 22px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background-color: #82a140;
    color: white;
    transform: scale(1.1);
}

.advantage-title {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Technology Innovations Section */
.tech-innovations {
    padding: 80px 0;
    background-color: #f8fafc;
}

.tech-innovations .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.tech-innovations .section-title h2 {
    color: #0a2c5e;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.tech-innovations .section-title p {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.innovation-card {
    display: flex;
    align-items: stretch;
    gap: 40px;
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.innovation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.innovation-card.reverse {
    flex-direction: row-reverse;
}

.innovation-content {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.innovation-image {
    flex: 1;
    display: flex;
    align-items: stretch;
    margin: -10px 0;
}

.innovation-content h3 {
    color: #0a2c5e;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.innovation-content h3 i {
    background-color: rgba(77, 171, 247, 0.1);
    color: #4dabf7;
    padding: 12px;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 20px;
}

.innovation-content > p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.innovation-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: contain;
}

.innovation-image .image-placeholder {
    background: linear-gradient(135deg, #e6f2ff, #f0f8ff);
    border-radius: 12px;
    padding: 60px 30px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #4dabf7;
    border: 2px dashed #4dabf7;
}

.innovation-image .image-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
}

.innovation-image .image-placeholder p {
    font-size: 16px;
    font-weight: 600;
    color: #0a2c5e;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.application-item {
    background-color: #f5f7ff;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.application-item:hover {
    background-color: #e6f2ff;
    transform: translateY(-3px);
}

.application-item i {
    color: #4dabf7;
    margin-right: 10px;
    font-size: 18px;
}

.application-item span {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* Feature List */
.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #4dabf7;
    margin-right: 15px;
    margin-top: 3px;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-list li div {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.feature-list li strong {
    color: #0a2c5e;
}

/* Responsive Styles for Tech Innovations */
@media (max-width: 992px) {
    .innovation-card,
    .innovation-card.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .innovation-image {
        flex: none;
        width: 100%;
        height: 300px;
    }

    .innovation-img {
        height: 300px;
    }

    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-innovations {
        padding: 60px 0;
    }

    .tech-innovations .section-title h2 {
        font-size: 26px;
    }

    .innovation-card {
        padding: 30px 20px;
        align-items: stretch;
    }

    .innovation-image {
        height: 250px;
    }

    .innovation-img {
        height: 250px;
    }

    .innovation-content h3 {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .innovation-content h3 i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .innovation-image .image-placeholder {
        height: 250px;
    }

    .innovation-image .image-placeholder i {
        font-size: 60px;
    }
}

/* Partner CTA Section (Full Width) */
.partner-section {
    background: linear-gradient(135deg, #3d3b50 0%, #2d2b3d 100%);
    padding: 60px 0;
}

.partner-cta {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    color: white;
}

.partner-cta .main-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.3;
}

.partner-cta .subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.partner-cta .buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-cta .btn {
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.partner-cta .btn i {
    font-size: 18px;
}

.partner-cta .btn-primary {
    background: linear-gradient(135deg, #4dabf7, #339af0);
    color: white;
    box-shadow: 0 4px 15px rgba(77, 171, 247, 0.3);
}

.partner-cta .btn-primary:hover {
    background: linear-gradient(135deg, #339af0, #228be6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(77, 171, 247, 0.4);
}

.partner-cta .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.partner-cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Process Flows Section (Full Width) */
.process-flows {
    padding: 100px 0;
    background-color: white;
}

.process-flows .section-title {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 40px;
}

.process-flows .section-title h2 {
    color: #0a2c5e;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-flows .section-title p {
    color: #666;
    font-size: 16px;
}

.flows-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 0;
}

.flows-grid .flow-item:nth-child(1),
.flows-grid .flow-item:nth-child(2),
.flows-grid .flow-item:nth-child(3),
.flows-grid .flow-item:nth-child(4) {
    grid-column: span 1;
}

/* Responsive for Partner CTA and Process Flows */
@media (max-width: 992px) {
    .partner-section {
        padding: 50px 0;
    }

    .partner-cta {
        padding: 0 30px;
    }

    .partner-cta .main-title {
        font-size: 30px;
    }

    .flows-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .partner-section {
        padding: 40px 0;
    }

    .partner-cta {
        padding: 0 20px;
    }

    .partner-cta .main-title {
        font-size: 26px;
    }

    .partner-cta .subtitle {
        font-size: 15px;
    }

    .partner-cta .buttons-container {
        flex-direction: column;
        gap: 15px;
    }

    .partner-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .process-flows {
        padding: 60px 0;
    }

    .process-flows .section-title {
        padding: 0 20px;
    }

    .process-flows .section-title h2 {
        font-size: 26px;
    }

    .flows-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
}

/* Why Partner with WoRK Section */
.why-partner-section {
    padding: 100px 0;
    background-color: #f0f8ff;
}

.why-partner-section .section-title h2 {
    color: #0a2c5e;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.why-partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-partner-card {
    background-color: white;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.why-partner-img {
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
    object-fit: contain;
}

.why-partner-card h3 {
    color: #0a2c5e;
    font-size: 22px;
    margin-bottom: 15px;
    padding: 25px 25px 10px;
}

.why-partner-card p {
    color: #666;
    line-height: 1.7;
    padding: 0 25px 25px;
    font-size: 15px;
}

/* Responsive for Why Partner Section */
@media (max-width: 992px) {
    .why-partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-partner-section {
        padding: 60px 0;
    }

    .why-partner-section .section-title h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .why-partner-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-partner-card {
        margin-bottom: 0;
    }

    .why-partner-img {
        height: auto;
    }
}

/* WORK Certification Section */
.certification-section {
    padding: 100px 0;
    background-color: white;
}

.certification-section .section-title h2 {
    color: #0a2c5e;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.certification-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s;
    min-height: 100px;
}

.certification-item:hover {
    transform: scale(1.05);
}

.certification-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive for Certification Section */
@media (max-width: 992px) {
    .certification-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .certification-section {
        padding: 60px 0;
    }

    .certification-section .section-title h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .certification-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .certification-item {
        min-height: 100px;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .certification-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .certification-item {
        min-height: 80px;
        padding: 10px;
    }
}