/* Ambassador Page Styles */
.AmbassadorMain {
    background-color: #F2F4F8; /* Light green background */
    padding-bottom: 50px;
    min-height: 100vh;
}

.ambassador-container {
    padding-top: 30px;
}

.ambassador-container .main {
    max-width: 1200px;
}

.amb-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Soft shadow */
}

.amb-card .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.amb-card .content {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.amb-card .content p {
    margin-bottom: 10px;
}

.amb-card .note {
    font-size: 14px;
    color: #666;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    border-left: 4px solid #ccc; /* Visual cue for note */
}

.amb-card .sub-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

.amb-card .title-sm {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

/* Document List Grid */
.doc-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.doc-list li {
    background: linear-gradient(307deg, #F0F6FF 0%, #D6E5FE 100%);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    transition: transform 0.3s ease;
}

.doc-list li:hover {
    transform: translateY(-5px);
}

.doc-list li .num {
    position: absolute;
    left: 20px;
    top: -15px;
    font-size: 20px;
    color: #79cba3;
    font-weight: bold;
    font-family: Arial, sans-serif;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.doc-list li .icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.doc-list li .icon-box img {
    height: 30px;
    object-fit: contain;
}

.doc-list li .name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

@media screen and (max-width: 768px) {
    .doc-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .amb-card {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .doc-list {
        grid-template-columns: repeat(1, 1fr);
    }
}
