
/* Why We Can Guarantee Section */
.why-guarantee-section {
    background-color: #0b0d17;
    padding: 60px 0;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.guarantee-card {
    border: 2px solid #5a3d2b;
    padding: 25px;
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.guarantee-icon-box img {
    width: 60px;
    height: auto;
}

.guarantee-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff !important;
}

.guarantee-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
}

.divider-line {
    border-top: 2px solid #ffffff;
    margin: 40px 0;
    position: relative;
}

.divider-line::before, .divider-line::after {
    content: '';
    position: absolute;
    top: -5px;
    width: 10px;
    height: 10px;
    background: #ffffff;
}

.divider-line::before { left: 0; }
.divider-line::after { right: 0; }

.guarantee-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.certificates-box {
    border: 2px solid #5a3d2b;
    padding: 20px;
    text-align: center;
}

.certificates-box h4 {
    color: #ffffff;
    margin-bottom: 20px;
    border-bottom: 1px solid #5a3d2b;
    padding-bottom: 10px;
}

.cert-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.features-tags {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #d37d45;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.feature-tag img {
    width: 30px;
}

.database-diagram {
    position: relative;
    text-align: center;
}

.database-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Team Section */
.team-section-new {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'DM Sans', sans-serif;
}

.team-header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.team-title-box {
    flex: 0 0 300px;
}

.arrow-icon-bg {
    background: #000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.arrow-icon-bg i {
    color: #ffcc00;
    font-size: 24px;
}

.team-title-box h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #000000;
    margin: 0;
}

.team-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    flex-grow: 1;
}

.team-member-card {
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    background: #f0f0f0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.team-member-card p {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
}

/* Discover Section Wrapper */
.about-discover-section-wrapper {
    background-color: #ffffff;
    padding: 80px 0;
}

.about-discover-section-wrapper .container {
    background-color: transparent;
    padding: 0;
}

.about-discover-hero, .about-discover-card {
    position: relative;
    border: 1px solid #000;
}

.about-discover-hero::before,
.about-discover-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 15px;
    height: 15px;
    background-color: #000;
    z-index: 10;
}
  