/* Contact Section */
.contact-section {
    max-width: 100%;
    margin: 50px 60px;
    background-color: white;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .contact-section {
        margin: 30px 20px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1280px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.contact-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-card-content {
    padding: 20px;
    flex: 1;
}

@media (min-width: 768px) {
    .contact-card-content {
        padding: 30px;
    }
}

.contact-card-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .contact-card-header {
        margin-bottom: 16px;
    }
}

.contact-card-subtitle {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .contact-card-subtitle {
        font-size: 16px;
    }
}

.contact-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #111827;
}

@media (min-width: 768px) {
    .contact-card-title {
        font-size: 24px;
    }
}

.contact-card-text {
    font-size: 14px;
    color: #9ca3af;
}

.contact-card-text .phone-label {
    display: inline-block;
    width: 40px;
}

.contact-card-text .phone-number {
    display: inline-block;
}

@media (min-width: 768px) {
    .contact-card-text {
        font-size: 16px;
    }
    
    .contact-card-text .phone-label {
        width: 50px;
    }
}

.contact-card-action {
    background-color: #F8F4E6;
    padding: 16px 20px;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .contact-card-action {
        padding: 20px 30px;
    }
}

.contact-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #BE930B;
    text-decoration: underline;
    cursor: pointer;
}

@media (min-width: 768px) {
    .contact-card-link {
        font-size: 16px;
    }
}

/* Global Service Network Section */
.global-service-section {
    background-color: #F4F4F4;
    padding: 50px 60px;
    text-align: center;
}

.global-service-title {
    color: #1C1C1C;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}

.global-service-tags {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.global-service-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #333;
}

.global-service-tag span {
    color: #1C1C1C;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.global-service-map {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 6px;
    background: #FFF;
    overflow: hidden;
}

.global-service-map img,
.global-service-map > div {
    width: 100%;
    height: auto;
}

.global-service-map > div {
    background: #e5e7eb;
}

@media (max-width: 768px) {
    .global-service-tags {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .global-service-map {
        max-width: 100%;
    }
}

/* FAQ Section */
.faq-section {
    padding: 50px 60px;
    background-color: white;
    text-align: center;
}

.faq-title {
    color: #1C1C1C;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
}

.faq-card {
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid rgba(28, 28, 28, 0.10);
    text-align: left;
}

.faq-card-title {
    color: #1C1C1C;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.faq-card-list {
    list-style: none;
    flex: 1;
    padding: 0;
}

.faq-card-list li {
    color: rgba(28, 28, 28, 0.50);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 8px;
}

.faq-read-more {
    overflow: hidden;
    color: #BE930B;
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.faq-read-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-card {
        padding: 20px;
    }
    
    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .global-service-section {
        padding: 30px 20px;
    }
    
    .global-service-title {
        font-size: 28px;
    }
    
    .faq-section {
        padding: 30px 20px;
    }
    
    .contact-card-header svg {
        width: 24px;
        height: 24px;
    }
}