.difference-section {
    background-color:#F5F5F7;
    color: #1e293b;
    font-family: Satoshi, Inter, system-ui, sans-serif;
    padding: 8rem 2rem; 
}
a.diff-button.secondary {
    border: 1px solid;
}
.difference-section .diff-container {
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
}
.difference-section .diff-header {
    margin: 0 auto 6rem; 
    max-width: 850px;
    text-align: center;
}

.difference-section .diff-header .diff-title {
    color: #000000;
    font-size: 44px; 
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 56px;
    margin-bottom: 2rem;
}

.difference-section .diff-header .diff-desc {
    color: #000000;
    font-size: 18px;
    line-height: 28px;
}
.difference-section .diff-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.05);
    border-radius: 2.5rem; 
    box-shadow: 0 40px 80px -15px rgba(0,0,0,0.08); 
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: 2rem;
}

@media(min-width:960px) {
    .difference-section .diff-card {
        flex-direction: row;
        min-height: 600px;
    }
}

.difference-section .diff-card .diff-card-image {
    position: relative;
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center center;
    border-radius: 28px 0px 0px 28px;
}

@media(min-width:960px) {
    .difference-section .diff-card .diff-card-image {
        width: 48%;
    }
}

.difference-section .diff-card .diff-card-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.difference-section .diff-card .diff-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem; 
}

@media(min-width:960px) {
    .difference-section .diff-card .diff-card-content {
        padding: 5.5rem;
        width: 52%;
    }
}

.difference-section .diff-card .diff-card-content .diff-card-title {
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 52px;
}
.difference-section .diff-card .diff-card-content .diff-list-wrapper .diff-bullets li {
    color: #000000;
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 1.75rem; 
    padding-left: 2.5rem;
    position: relative;
    list-style: none;
}

.difference-section .diff-card .diff-card-content .diff-list-wrapper .diff-bullets li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background-color: #10b981;
	border-radius: 50%;
}

.difference-section .diff-card .diff-card-content .diff-list-wrapper .diff-bullets li strong {
    color: #0f172a;
    font-weight: 700;
}
.difference-section .diff-card .diff-card-content .diff-button-wrapper {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.difference-section .diff-card .diff-card-content .diff-button-wrapper .diff-button {
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.difference-section .diff-card .diff-card-content .diff-button-wrapper .diff-button.primary {
    background: #000000;
    color: #ffffff;
    border: none;
}

.difference-section .diff-card .diff-card-content .diff-button-wrapper .diff-button.primary:hover {
    background: #10b981;
    transform: translateY(-2px);
}