* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f3ee;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: #f5f3ee;
    padding: 0px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}
.header__top

 {
    display: flex
;
    padding: 12px;
    background-color: #dfad3b;
    width: 100%;
    justify-content: space-between;
}
.header__top .container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}
.header__content

 {
    display: flex
;
    padding: 10px 0;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #1a2a44;
}

.logo img {
    margin-right: 10px;
    height: 60px;
    width: auto;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li {
    margin-left: 20px;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: #1a2a44;
    font-weight: bold;
    text-transform: uppercase;
}

.desktop-nav ul li a i,
.mobile-nav ul li a i,
.contact-info i,
.btn i,
.schedule p i,
.stat i,
.feature i,
.service-item i,
.footer__links ul li a i {
    margin-right: 8px;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
    color: #1a2a44;
}

.btn {
    margin: 0 auto;
    background-color: #a72431;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
   width: fit-content;
   display: block;
   
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #1a2a44;
    margin: 2px 0;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 183px;
    left: 0;
    width: 100%;
    background-color: #f5f3ee;
    padding: 20px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin: 10px 0;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #1a2a44;
    font-weight: bold;
}
a{
    text-decoration: none;
}
/* Hero Section */
.hero {
    background-color: #1a2a44;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    margin-top: 80px;
}
.hero__content{
flex: 1;
}
.hero__wrap{
display: flex;
gap: 40px;
align-items: center;
}
.hero__img{
flex: 1;
}
.hero__img img{
    width: 100%;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Consultant Section */
.consultant {
    background-color: #d4af37;
    padding: 50px 0;
}

.consultant .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
}

.consultant-box {
    width: 100%;
    background-color: #976323;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    text-align: center;
}
.consultant-img{
    flex: 1;
}
.consultant-img img{
 width: 100%;
}
.consultant-img span{
    font-size: 24px;
    font-weight: 700;
}
.consultant-box img {
    width: 100px;
    height: 100px;
    margin-top: -70px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.consultant-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}
.consultant-boxs{
    display: flex;
    flex: 1;
    gap: 50px;
    align-items: center;
}
.consultant-box p {
    font-size: 16px;
    color: #fff;
}

/* Schedule Section */
.schedule {
    background-color: #1a2a44;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.schedule h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.schedule form {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;
}

.schedule input,
.schedule textarea {
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.schedule textarea {
    height: 100px;
}

.schedule p {
    margin-top: 20px;
}

/* About Section */
.about {
    background-color: #fff;
    padding: 50px 0;
}
.about.tre .container{
 flex-direction: column;
 gap: 20px;
}
.about.tre .container ul {
    list-style: none;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.about .btn{
    margin-top: 40px;
}
.about .container {
    display: flex;
    justify-content: space-between;
}

.about-text {
    width: 50%;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-details {
    width: 40%;
}

.about-details img {
    width: 100%;
    max-width: 400px;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
}

.about-details h3 {
    font-size: 24px;
    margin-bottom: 20px;
}
.header__wrap {
    display: flex
;
    gap: 15px;
    flex-wrap: wrap;
}
/* Stats Section */
.stats {
    background-color: #d4af37;
    padding: 50px 0;
    margin-top: 30px;
    text-align: center;
}

.stats .container {
    display: flex;
    justify-content: space-around;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat i {
    color: #1a2a44;
    margin-bottom: 10px;
}

.stat h3 {
    font-size: 48px;
    color: #1a2a44;
}

.stat p {
    font-size: 16px;
    color: #1a2a44;
}

/* Why Choose Us Section */
.why-choose {
    background-color: #1a2a44;
    color: #fff;
    margin-top: 50px;
    padding: 50px 0;
    text-align: center;
}

.why-choose h2 {
    font-size: 18px;
    text-transform: uppercase;
}

.why-choose h3 {
    font-size: 36px;
    margin: 20px 0;
}

.features {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    width: 40%;
display: flex;
flex-direction: column;
gap: 10px;
    background-color: #fff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    
}

.feature i {
    color: #1a2a44;
    margin-bottom: 10px;
}

/* Services Section */
.services {
    background-color: #fff;
    padding: 50px 0 0;
    text-align: center;
}

.services h2 {
    font-size: 18px;
    text-transform: uppercase;
}
.services p{
    margin-bottom: 20px;
    font-weight: 500;
}
.services h3 {
    font-size: 36px;
    margin: 20px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item {
    background-color: #f5f3ee;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    gap: 20px;
    align-items: center;
}
.service-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-item i {
    color: #1a2a44;
    margin-bottom: 10px;
}

/* Projects Section */
.projects {
    background-color: #1a2a44;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.projects h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.project-grid {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.project-item {
    width: 45%;
    background-color: #fff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.project-item img {
    width: 100%;
    max-width: 300px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 18px;
    text-transform: uppercase;
}

.testimonials h3 {
    font-size: 36px;
    margin: 20px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial-item {
    background-color: #f5f3ee;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.testimonial-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* CTA Section */
.cta {
    background-color: #1a2a44;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter {
    background-color: #a5861f;
    padding: 30px 0;
    text-align: center;
}
.newsletter__blocks{
    display: flex;
    gap: 30px;
}
.newsletter__block{
    flex: 1;
}
.newsletter__block img{
    width: 100%;
}
.newsletter ul{
    display: flex;
    gap: 50px;
    margin-top: 30px;
    justify-content: center;
}
.newsletter ul li{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.newsletter .btn{
    margin-top: 50px;
}
.newsletter ul li span{
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.newsletter h2 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-bottom: 20px;
    color: #1a2a44;
}

.newsletter form {
    display: flex;
    justify-content: center;
}

.newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.subscribe-btn {
    border-radius: 0 5px 5px 0;
}

/* Footer */
footer {
    background-color: #1a2a44;
    color: #fff;
    padding: 50px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
}

.footer__logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.footer__logo img {
    margin-right: 10px;
    height: 70px;
}

.footer__links h4 {
    margin-bottom: 20px;
}

.footer__links ul {
    list-style: none;
}

.footer__links ul li {
    margin: 10px 0;
}

.footer__links ul li a {
    color: #fff;
    text-decoration: none;
}

.footer__bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #fff;
    padding-top: 20px;
}

.footer__bottom-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}
.footer__bottom-links {
    margin-bottom: 40px;
    display: flex
;
justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav, .contact-info {
        display: none;
    }

    .burger {
        display: flex;
    }

    .consultant .container,
    .about .container,
    .stats .container,
    .features,
    .service-grid,
    .project-grid,
    .testimonial-grid,
    footer .container {
        flex-direction: column;
        align-items: center;
    }

    .consultant-box,
    .about-text,
    .about-details,
    .stat,
    .feature,
    .service-item,
    .project-item,
    .testimonial-item,
    .footer__links {
        width: 100%;
        margin: 10px 0;
    }

    .schedule form {
        width: 100%;
    }
    .header .container {
        display: flex
    ;
        flex-direction: row;
        gap: 10px;
        justify-content: space-between;
        align-items: center;
    }
    .header__top .container

 {
    display: flex
;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}
.consultant-boxs {
    display: flex
;
    flex: 1;
    gap: 50px;
    align-items: center;
    flex-direction: column;
}
.service-grid {
    display: grid
;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
.newsletter ul {
    display: flex
;
    gap: 50px;
    margin-top: 30px;
    justify-content: center;
    flex-direction: column;
}
.header__top .container {
    display: flex
;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    align-items: flex-start;
}
}
html,body{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.coieban {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1f1f1f;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    flex-wrap: wrap;
    gap: 10px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .coieban a {
    color: #4fc3f7;
    text-decoration: underline;
  }
  
  .cookie-actions {
    display: flex;
    gap: 10px;
  }
  
  .btn-accept, .btn-decline {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .btn-accept {
    background-color: #4caf50;
    color: white;
  }
  
  .btn-decline {
    background-color: #f44336;
    color: white;
  }