.vt-page-modules {
    width: 100%;
    overflow: hidden;
}

.vt-module {
    width: 100%;
    position: relative;
}

.vt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.vt-universal-contents{
    color: #fff;
    max-width: 800px;
    padding: 30px 20px 30px 20px;
}
.vt-hero-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.vt-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vt-hero-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
}

.vt-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.vt-hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    opacity: 0.9;
}

.vt-hero-button {
    display: inline-block;
    padding: 15px 40px;
    background: #344c9e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.vt-hero-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 122, 255, 0.4);
}

.vt-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.vt-section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #344c9e;
    margin-bottom: 10px;
}

.vt-section-title {
    font-size: 30px;
    font-weight: 700;
    color: #344c9e;
    margin-bottom: 10px;
}

.vt-section-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vt-multi-image {
    padding: 50px 0;
    background: #f8f9fa;
}

.vt-multi-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.vt-multi-image-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.vt-multi-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.vt-image-wrapper {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.vt-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vt-multi-image-item:hover .vt-image-wrapper img {
    transform: scale(1.1);
}

.vt-image-title {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #23282d;
    margin: 0;
    text-align: center;
}

.vt-image-left-text-right,
.vt-image-right-text-left {
    padding: 40px 0;
}

.vt-image-text-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.vt-image-side {
    flex: 1;
}

.vt-image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.vt-text-side {
    flex: 1;
}

.vt-text-side .vt-section-title {
    text-align: left;
    font-size: 32px;
    margin-bottom: 20px;
}

.vt-section-content {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 30px;
}

.vt-button {
    display: inline-block;
    padding: 12px 30px;
    background: #344c9e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.vt-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
    color: #fff;
}

.vt-text-content {
    padding: 60px 0;
}

.vt-text-content .vt-section-title {
    text-align: center;
    margin-bottom: 30px;
}

.vt-text-content .vt-section-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.vt-text-button {
    padding: 80px 0;
    text-align: center;
}

.vt-text-button-content {
    max-width: 800px;
    margin: 0 auto;
}

.vt-text-button-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.vt-text-button-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    opacity: 0.9;
}

.vt-text-button-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #344c9e;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.vt-text-button-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.vt-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.vt-faq-list {
    max-width: 1200px;
    margin: 0 auto;
}

.vt-faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.vt-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s;
}

.vt-faq-question:hover {
    background: #f8f9fa;
}

.vt-faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.vt-faq-icon::before,
.vt-faq-icon::after {
    content: '';
    position: absolute;
    background: #28419a;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vt-faq-icon::before {
    width: 2px;
    height: 14px;
    transition: transform 0.3s;
}

.vt-faq-icon::after {
    width: 14px;
    height: 2px;
}

.vt-faq-item.active .vt-faq-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.vt-faq-text {
    font-size: 16px;
    font-weight: 600;
    color: #23282d;
    flex: 1;
}

.vt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.vt-faq-item.active .vt-faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.vt-faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

@media (max-width: 768px) {
    .vt-hero-title {
        font-size: 32px;
    }

    .vt-hero-description {
        font-size: 16px;
    }

    .vt-section-title {
        font-size: 28px;
    }

    .vt-image-text-layout {
        flex-direction: column;
        gap: 30px;
    }

    .vt-text-side .vt-section-title {
        font-size: 28px;
    }

    .vt-multi-image-grid {
        grid-template-columns: 1fr;
    }

    .vt-text-button-title {
        font-size: 28px;
    }

    .vt-text-button-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .vt-hero-banner {
        min-height: 400px;
    }

    .vt-hero-title {
        font-size: 24px;
    }

    .vt-hero-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .vt-section-title {
        font-size: 24px;
    }

    .vt-faq-question {
        padding: 15px 20px;
    }

    .vt-faq-text {
        font-size: 14px;
    }
}

.vt-content-with-image {
    padding: 30px 0;
    background: #fff;
}

.vt-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.vt-content-image {
    flex: 0 0 600px;
}

.vt-content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vt-content-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}
.vt-form-sidesa {
  flex: 1;
    background: #ffffff26;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #9d9d9d24;
}
.vt-section-titlebm{
    margin-bottom: 20px;
}
.vt-section-headers{
    margin-bottom: 50px;
}
.vt-section-titleft {
    font-size: 30px;
    font-weight: 700;
    color: #47403d;
    margin-bottom: 10px;
}
.vt-pricing {
    padding: 80px 0;
    background: #f9f9f9;
}
.form-field select{
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}
.vt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vt-pricing-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vt-pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vt-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #344c9e;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.vt-pricing-featured {
    border: 2px solid #344c9e;
}

.vt-pricing-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.vt-pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: #344c9e;
    margin-bottom: 20px;
}

.vt-pricing-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.vt-pricing-button {
    display: inline-block;
    padding: 12px 30px;
    background: #344c9e;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.vt-pricing-button:hover {
    background: #0056b3;
}

.vt-faq-contact-form {
    padding: 80px 0;
    background: #fff;
}

.vt-faq-contact-layout {
    display: flex;
    gap: 60px;
}

.vt-faq-side {
    flex: 1;
}

.vt-form-side {
    flex: 1;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.vt-contact-form {
    margin-top: 30px;
}

.vt-contact-info {
    margin-top: 30px;
}

.vt-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.vt-contact-icon i{
    font-size: 36px;
    margin-right: 15px;
    color: #344c9e;
    min-width: 30px;
}
.vt-section-titlesar {
    font-size: 30px;
    font-weight: 700;
    color: #313335;
    margin-bottom: 10px;
}
.vt-contact-details {
    flex: 1;
}

.vt-contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
}

.vt-contact-value {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.vt-universal-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vt-universal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #344c9ead 70%, #6d5baa52 100%);
}

.vt-container {
    position: relative;
    z-index: 2;
}

.vt-breadcrumb {
    margin-bottom: 30px;
    background-color: #344c9e5c;
    margin: 0px 0px 0px 0px;
    padding: 7px 12px 7px 12px;
    display: inline-block;
    border-radius: 2px 2px 2px 2px;
    color: #ffffff;
    opacity: 0.9;
    font-size: 14px;
}
.vt-breadcrumb a{
    color: #ffffff;
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}
.vt-universal-content {
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vt-universal-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #344c9e;
}

.vt-universal-title {
    font-size: 65px;
    line-height: 75px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    opacity: 0.9;
}

.vt-universal-description {
    font-size: 18px;
    line-height: 1.6;
    line-height: 28px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.vt-business-service-a {
    padding: 30px 0;
    background: #fff;
}

.vt-business-layout {
    display: flex;
    gap: 30px;
    align-items: center;
}

.vt-business-image {
    flex: 0 0 500px;
}

.vt-business-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vt-business-content {
    flex: 1;
}

.vt-section-content {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin: 20px 0;
}

.vt-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.vt-service-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #e8f0fe;
    color: #344c9e;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.vt-business-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vt-stat-item {
    background: #f9f9f9;
    border-radius: 8px;
}

.vt-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.vt-stat-progress {
    position: relative;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.vt-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #344c9e, #00d4ff);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.vt-progress-value {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 14px;
    font-weight: 700;
    color: #344c9e;
}

.vt-stat-rate {
    text-align: center;
}

.vt-rate-value {
    font-size: 32px;
    font-weight: 700;
    color: #344c9e;
}

.vt-quality-services {
    padding: 80px 0;
    background: #f9f9f9;
}

.vt-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vt-service-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vt-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vt-service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vt-service-icon img {
    width: 100%;
    height: 100%;
    padding: 10px;
}

.vt-service-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.vt-service-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.vt-service-link {
    display: inline-block;
    color: #344c9e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.vt-service-link:hover {
    color: #0056b3;
}

.vt-partners {
    padding: 80px 0;
    background: #fff;
}

.vt-partners-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.vt-partners-info {
    flex: 1;
}

.vt-partners-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vt-partner-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vt-partner-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vt-partner-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .vt-content-wrapper,
    .vt-business-layout,
    .vt-faq-contact-layout,
    .vt-partners-layout {
        flex-direction: column;
        gap: 30px;
    }

    .vt-content-image,
    .vt-business-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .vt-pricing-grid,
    .vt-services-grid,
    .vt-partners-grid {
        grid-template-columns: 1fr;
    }

    .vt-universal-title {
        font-size: 32px;
        line-height: 25px;
    margin-bottom: 10px;
    }

    .vt-universal-description {
        font-size: 16px;
    }

    .vt-pricing-price {
        font-size: 28px;
    }

    .vt-form-side {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .vt-universal-header {
        min-height: 300px;
    }

    .vt-universal-title {
        font-size: 24px;
    }

    .vt-pricing-item,
    .vt-service-item {
        padding: 30px 20px;
    }

    .vt-pricing-price {
        font-size: 24px;
    }

    .vt-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vt-blog {
    padding: 40px 0;
    background: #f9f9f9;
}

.vt-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.vt-blog-columns-1 {
    grid-template-columns: repeat(1, 1fr);
}

.vt-blog-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.vt-blog-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.vt-blog-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .vt-blog-columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .vt-blog-columns-3,
    .vt-blog-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .vt-blog-columns-2,
    .vt-blog-columns-3,
    .vt-blog-columns-4 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.vt-blog-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vt-blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vt-blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.vt-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vt-blog-item:hover .vt-blog-image img {
    transform: scale(1.1);
}

.vt-blog-content {
    padding: 20px;
}

.vt-blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #333;
}

.vt-blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vt-blog-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vt-blog-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
    word-wrap: break-word; /* 长单词换行 */
  overflow-wrap: break-word; /* 更现代的换行 */
  white-space: normal; /* 允许换行 */
}

.vt-blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vt-blog-title a:hover {
    color: #344c9e;
}

.vt-blog-readmore {
    display: inline-block;
    color: #344c9e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    color: #FFFFFF;
    padding: 13px 34px 13px 34px;
    background-color: #28419a;
    border-radius: 50px 50px 50px 50px;
}

.vt-blog-readmore:hover {
    background-color:  #126ee8;
    color: #fff;
}

.vt-blog-loadmore {
    text-align: center;
    margin-top: 30px;
}
.vt-blog-date i{
    color: #28419a;
}
.vt-blog-author i{
    color: #28419a;
}
.vt-loadmore-btn {
    padding: 12px 40px;
    background: #344c9e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.vt-loadmore-btn:hover {
    background: #0056b3;
}

.vt-loadmore-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

@media only screen and (max-width: 1024px) {
    .vt-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .vt-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .vt-blog-image {
        height: 180px;
    }
    
    .vt-blog-content {
        padding: 15px;
    }
    
    .vt-blog-title {
        font-size: 16px;
    }
}

@media only screen and (max-width: 480px) {
    .vt-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .vt-blog-meta {
        align-items: flex-start;
        gap: 5px;
    }
}

/* 编辑器模块样式 */
.vt-editor {
    padding: 80px 0;
    background: #fff;
}

.vt-editor-content {
    margin-top: 30px;
    line-height: 1.8;
    color: #333;
}

.vt-editor-content h1,
.vt-editor-content h2,
.vt-editor-content h3,
.vt-editor-content h4,
.vt-editor-content h5,
.vt-editor-content h6 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: #344c9e;
}

.vt-editor-content p {
    margin-bottom: 15px;
}

.vt-editor-content ul,
.vt-editor-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.vt-editor-content li {
    margin-bottom: 8px;
}

.vt-editor-content img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 8px;
}

.vt-editor-content a {
    color: #344c9e;
    text-decoration: none;
}

.vt-editor-content a:hover {
    text-decoration: underline;
}

/* 地图模块样式 */
.vt-map {
    padding: 80px 0;
    background: #fff;
}

.vt-map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.vt-map-address {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    color: #666;
}

.vt-map-address p {
    margin: 0;
}

@media (max-width: 768px) {
    .vt-map {
        padding: 60px 0;
    }
    
    .vt-map-container {
        margin-top: 20px;
    }
}
