.onas-container {
    width: 100%;
    font-family: 'Inter', sans-serif;
    color: #24291F;
}

a {
    color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: left;
    position: relative;
}

h2 {
    margin-bottom: 2rem;
    text-align: left;
    font-size: 1.8rem;
    padding: 10px 0;
}

/* Hero Section */
.hero-section-page {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
}


.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 0;
}

.feature-section {

    background: #f1f1f1;
    position: relative;
    overflow: hidden;
}

.feature-section h2 {
    margin: 1rem 0;
    text-align: left;
    font-size: 1.8rem;
    padding: 20px 0;
    color: #333;
}

.text-block {
    width: 730px;
    padding: 40px;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.text-block .logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.text-block p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 13px;
}


.image-block {
    position: absolute;
    bottom: 0;
	right: 0;
    width: 30%;
	max-width: 450px;
}

.image-block img {
    display: block;
    width: 100%;
    height: auto;
}

.legal-section {
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    max-width: 1000px;
    margin: 60px auto;

}

.legal-section .legal-section-img{
	width: 100%;
}

.legal-section .legal-section-img img {
    width: 100%;
    max-width: 350px;
    object-fit: cover;
    border-radius: 15px;
    background-color: #F1F1F1;
	padding: 30px 50px;
}

.legal-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #F1F1F1;
    margin-left: 20px;
    border-radius: 15px;
}


.legal-content h2 {
    margin: 0 0 5px;
    font-size: 28px;
    color: #333;
}

.legal-content p {
    margin-bottom: 30px;
    font-size: 13px;
    color: #24291F;
    line-height: 1.6;
}

.legal-content a img {
    width: 100%;
    max-width: 200px;
    object-fit: cover;
}

.gradient-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    background: transparent;
    transition: background 0.3s;
    width: 210px;
    text-align: center;
	font-size: 14px;

}

.gradient-button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(to right, #ffd700, #00c853);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.gradient-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.company-info {
    background-color: #F1F1F1;
    padding: 20px 0 0;
}

.company-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.company-text {
    flex: 1.5;
    min-width: 300px;
}

.company-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.company-text p {
    font-size: 13px;
    color: #24291F;
    line-height: 1.6;
    margin-bottom: 15px;
}

.company-text strong {
    font-weight: bold;
}

.contact-button {
    display: inline-block;
    background-color: #ffcc00;
    color: #000;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #e6b800;
}

.company-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    transform: translateX(-100px);
}

.company-image img {
    width: 110%;
    object-fit: cover;
}


.services-section {
    padding: 30px 0;
    background-color: #f1f1f1;
    
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 3rem;
    text-align: left;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    display: flex;
    background: white;
    padding: 50px 20px;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.box-icon{
    display: flex;
    align-items: center;
    justify-self: center;
    flex: 0.5;
	margin: 0 20px 0 0;
}

.box-icon{
	margin: 0 auto;
}

.service-card-content{
    flex: 2;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
}

.space{
    width: 100%;
    height: 60px;
    background-color: #fff;
}

.why-insure-section {
    padding: 60px 0;
    background-color: #F1F1F1;
    text-align: center;
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
	margin-top: 5rem;
}

.benefit-item {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
	position: relative;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: block;
    object-fit: contain;
	position: absolute;
	top: -42px;
	left: calc(50% - 42px);
 
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #24291F;
	margin-top: 3rem;
    font-weight: 600;
	text-align: center;
}

.benefit-item p {
    font-size: 13px;
    color: #24291F;
	text-align: center;
	padding: 0 20px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }
}



@media (max-width: 992px) {
    .text-block {
        width: 100%;
        padding-right: 40px;
    }

    .image-block {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.benefit-item{
		margin-bottom: 35px;
	}
    
    .slide {
        flex-direction: column;
    }
	
	.slide-content{
		padding: 20px;
	}
    
    .slide-image {
        min-height: 200px;
		padding: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .farmer-content h2 {
        font-size: 1.8rem;
    }
	
	.legal-section{
		flex-direction: column;
	}
	
	.legal-section .legal-section-img{
	width: 100%;
	}

	.legal-section .legal-section-img img {
    	max-width: 100%;
  		padding: 0 20px;
	}

	.legal-content {
    	margin-left: 0;
		margin: 20px;
	}

	.company-text {
    	padding: 10px 10px 40px 10px;
	}

	.company-image {
    	transform: translateX(0);
		padding: 10px;
	}

}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
	
	.benefit-item{
		margin-bottom: 35px;
	}
    
    .hero-section {
        height: 250px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
	
	.farmer-section{
		height: 100%;
	}
	
	.service-card{
		flex-direction: column;
        text-align: center;
        margin: 0 20px;
	}
}