.two-row-section {
    background-color: #fff;

    padding: 50px 0;
}

.text-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-left: 0;
}

.text-content h2:after {
    display: none;  
}

h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin: 40px 0 30px;
    font-weight: 600;
    position: relative;
    padding-left: 0;
}

h3:before {
    display: none;  
}

.text-content p {
    text-align: justify;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #333;
    max-width: 90%;
}

.image-content {
    display: flex;
    align-items: center;
    height: 100%;
}

.image-content img {
    max-width: 100%;
    height: auto;
    margin-left: 20px;
    border-radius: 5px;
    object-fit: cover;
    min-height: 600px;
}

@media (max-width: 768px) {
    .image-content img {
        min-height: auto;
        margin: 20px 0;
    }
}

/* Custom border for input fields */
.custom-input {
    border: 1px solid black;
    padding: 10px;
}

.custom-label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;

    display: block;
}

.custom-btn {
    background-color: white;
    border: 1px solid black;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.custom-btn:hover {
    background-color: #f8f9fa;
    border-color: #6c757d;
}



@media (max-width: 768px) {
    .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .image-content {
        margin-bottom: 20px;
    }
}


.about-content {
    line-height: 1.8;
}

.about-content p {
    color: #333;
}

.about-content .lead {
    font-size: 1.2rem;
    color: #000;
}

.principles-list {
    list-style: none;
    padding-left: 0;
}

.principles-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #333;
}

.principles-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

.conclusion {
    font-style: italic;
    margin-top: 25px;
    color: #000;
}

.text-content h2 {
    color: #000;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.text-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #000;
}

.image-content img {
    transition: transform 0.3s ease;
}

.image-content img:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.premium-intro {
    font-size: 1.25rem;
    font-weight: 400;
    color: #2c3e50;
    line-height: 1.7;
    margin: 2rem auto 0 auto;
    max-width: 800px;
    background: rgba(255,255,255,0.92);
    border-radius: 14px;
    padding: 2.2rem 2.7rem;
    box-shadow: 0 4px 24px rgba(44,62,80,0.07);
    letter-spacing: 0.01em;
    text-align: center;
}

.premium-list {
    margin: 2.5rem auto 2rem auto;
    max-width: 600px;
    padding: 0;
    list-style: none;
    background: none;
    box-shadow: none;
}

.premium-list li {
    font-size: 1.08rem;
    color: #1a3552;
    background: none;
    margin-bottom: 18px;
    padding: 0 0 0 0.8em;
    border-radius: 0;
    box-shadow: none;
    display: block;
    font-weight: 500;
    text-align: left;
    position: relative;
}

.premium-list li::before {
    content: '\2022';
    color: #3498db;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.1em;
    margin-right: 0.5em;
    font-weight: bold;
}

.premium-conclusion {
    font-size: 1.1rem;
    color: #2c3e50;
    font-style: italic;
    margin-top: 2.5rem;
    text-align: center;
    background: rgba(255,255,255,0.85);
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 2px 10px rgba(44,62,80,0.04);
}

@media (max-width: 768px) {
    .premium-intro {
        font-size: 1rem;
        padding: 1.2rem 1rem;
    }
    .premium-list li {
        font-size: 0.98rem;
        padding: 0.8rem 0.7rem;
    }
}

.about-title::after {
    content: none;
}