body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
    font-size: 1.25rem;
}

.main-bg {
    background: linear-gradient(135deg, #fff 60%, #E9A400 100%);
    min-height: 100vh;
}

.main-section {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 80px;
}

.main-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #E9A400;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.main-subtitle {
    font-size: 1.7rem;
    color: #444;
}

.btn-main {
    background: #E9A400;
    color: #fff !important;
    border-radius: 30px;
    padding: 22px 56px;
    font-weight: 700;
    font-size: 1.35rem;
    border: none;
    box-shadow: 0 4px 16px rgba(233,164,0,0.10);
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-main:hover, .btn-main:focus {
    background: #b37c00;
    color: #fff !important;
}

.main-img {
    max-width: 448px;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(233,164,0,0.10);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E9A400;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.features-section {
    background: #fff;
}

.feature-card {
    background: #f7f7f7;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(233,164,0,0.06);
    transition: box-shadow 0.2s;
    font-size: 1.25rem;
}

.feature-card:hover {
    box-shadow: 0 6px 24px rgba(233,164,0,0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
}

.feature-card h5 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contacts-section {
    background: #fff;
}

.contact-card {
    background: #f7f7f7;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(233,164,0,0.06);
    font-size: 1.25rem;
}

.contact-link {
    color: #E9A400;
    text-decoration: underline;
    font-size: 1.25rem;
}

.contact-link:hover {
    color: #b37c00;
    text-decoration: none;
}

.footer {
    background: #fff;
    color: #888;
    border-top: 1px solid #eee;
    font-size: 1.15rem;
}

@media (max-width: 991.98px) {
    .main-title {
        /*font-size: 2.2rem;*/
    }
    .main-img {
        max-width: 300px;
    }
    .section-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 767.98px) {
    .main-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .main-title {
        font-size: 2.2rem;
    }
    .section-title {
        /*font-size: 1.1rem;*/
    }
    .main-img {
        max-width: 180px;
    }
    .btn-main {
        font-size: 1rem;
        padding: 12px 24px;
    }
    .feature-card h5 {
        font-size: 1rem;
    }
}

    .main-title {
      hyphens: auto;
      -webkit-hyphens: auto;
      -ms-hyphens: auto;
      word-break: break-word;
      overflow-wrap: break-word;
    }