.hero {
    position: relative;
    background: url('https://caspiauditgroup.kz/images/landing/main/audit_main_hero1.jpg') center/cover no-repeat;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1); /* Black color with 60% opacity */
    z-index: 1; /* Ensure the overlay is behind the content */
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 2; /* Ensure the content is on top of the overlay */
}

.hero-title {
    font-size: 3em;
    color:white;
    display:inline;
    background-color:#ced9dbad;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
}

.hero-subtitle {
    font-size: 1.5em;
    color: antiquewhite;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-in-out 0.5s;
}

.hero-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2em;
    text-decoration: none;
    color: #fff;
    background-color: #3498db;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.hero-button:hover {
    background-color: #2980b9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


#main_page{
    width:62%;
    margin: 0 auto;
}


.wrapper {
		display: grid;
        grid-gap: 10px;
        justify-content: center;
		grid-template-columns: [col] 24% [col] 24% [col] 24% [col] 24%;
		background-color: #fff;
		color: #444;
  
	}

	.box {
		flex: 1 1 500px;
        background: #fff;
        border-radius: 10px;
        /*box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
        /*padding: 20px;*/
        transition: transform 0.3s ease, box-shadow 0.3s ease;

	}
	
	.box img{
	    max-width:45%;
	}

	.a {
		grid-column: col / span 2;
		grid-row: row 2 ;
	}
	.b {
		grid-column: col 2 / span 3 ;
		grid-row: row 2;
	}
	
	
	

/* About Us Section */
#about {
    margin-top:50px;
    background: #f7f7f8;
    color: #333;
    border-radius:20px 20px 0px 0px;
    margin-bottom:10px;
}

/* New Class for White Text */
.white-text {
    color: white;
}

.section_template{
    margin-top:50px;
}

.main_div{
        width:62%;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    padding-bottom:30px;
}

.about-list {
    flex: 1 1 300px;
    max-width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.about-list h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #555;
}

.about-list ul {
    list-style-type: none;
    padding: 0;
}

.about-list ul li {
    margin-bottom: 10px;
}

.about-list ul li a {
    color: #007acc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-list ul li a:hover {
    color: #00509e;
}	




.unordered-list {
    font-size:1.2rem;
    background: #fff;
    border-radius: 15px;
    /*margin: 50px auto 0;*/
    /*width: 800px;*/
    box-shadow: 0 1px 2px 0px #444;
}

.unordered-list ul {
    list-style:url("https://serblog.ru/demo/list-style-image1/list.png");
	padding: 10px 32px;
	display: flex;
    flex-direction: column;
    gap: 15px;
    text-align:left;
}



.pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .pricing-box {
            background-color: #f7f9fd4d;
            border-radius: 12px;
            padding: 24px;
            display: flex;
            flex-direction: column;
        }
        .pricing-title {
            font-size: 20px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 8px;
        }
        .pricing-subtitle {
            color: #d81b60;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 24px;
        }
        .price {
            color:#1c7cc3;
            font-size: 48px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 4px;
        }
        .vat {
            font-size: 24px;
            font-weight: 700;
            color: #555;
        }
        .price-details {
            margin: 24px 0;
            padding-left: 14px;
            list-style: square;
            
          
        }
        .price-details li {
            margin-bottom: 12px;
            /*font-size: 12px;*/
            line-height: 1.4;
        }
        .buy-button {
            background-color: #1a73e8;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 700;
            margin-top: auto;
            text-align: center;
        }
        .buy-button:hover {
            background-color: #1557b0;
        }
