:root {
    --primary-dark-green: rgba(7, 48, 44);
    --light-green:  rgb(10, 122, 96);
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dim: rgba(255, 255, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    /* background:rgba(10, 122, 96, 0.93); */
    background: linear-gradient(to bottom, rgba(10, 122, 96, 0.93), transparent);
    pointer-events: none;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.site-header.hidden {
    transform: translateY(-100%);
}

.header-logo {
    width: 60px;
    height: 60px;
    background: rgb(7, 48, 44, 0.667);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    pointer-events: auto;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    padding: 15px;
}

.header-logo:hover {
    transform: scale(1.1);
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

main {
    flex: 1;
    margin-top: 120px;
}

.site-footer {
    background: rgba(10, 122, 96, 0.93);
    width: 100%;
    padding: 30px 20px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(76, 253, 191, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-contacts {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-contact-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateY(-3px);
}

.footer-contact-item:hover .footer-contact-icon {
    background: var(--primary-dark-green);
}

.footer-contact-item:hover .footer-contact-icon i {
    color: #1a2e1f;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
}

.footer-contact-label {
    font-size: 0.9rem;
    color: var(--primary-dark-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-legal {
    text-align: center;
    font-size: 0.75rem;
    color: #8a9aa8;
}

.footer-legal-link {
    color: #8a9aa8;
    text-decoration: none;
    background-color: transparent;
    border: none;
}

.footer-legal-link:hover {
    text-decoration: underline;
    color: #6c7e8c;
}

.footer-legal-separator {
    margin: 0 6px;
    color: #9aabb8;
}

.footer-legal-owner {
    color: #8a9aa8;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark-green);
    color: var(--text-light);
    overflow-x: hidden;
}

.slide-1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--primary-dark-green);
}

.container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    min-height: 80vh;
    border-radius: 20px;
    overflow: hidden;
}

.left-half {
    flex: 1;
    min-width: 300px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.project-title {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: 'Days One';
    font-weight: 400;
    line-height: 1;
}

.project-description {
    font-size: 1.6rem;
    line-height: 2;
    max-width: 500px;
}

.right-half {
    flex: 1;
    min-width: 300px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.logo-container {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.toc-button {
    padding: 14px 30px;
    background: rgba(10, 122, 96, 0.718);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color:#dad6d6;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.toc-button:hover {
    background: rgba(8, 98, 77, 0.774);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.toc-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.toc-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 320px;
    height: 100vh;
    background: var(--light-green);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease-out;
    z-index: 3000;
    padding: 15px 30px 80px 30px;
    overflow-y: auto;
}

.toc-sidebar.show {
    right: 0;
}

.toc-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.toc-close:hover {
    background: rgba(8, 98, 77, 0.774);
    transform: rotate(90deg);
}

.toc-sidebar h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-dark-green);
}

.toc-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-sidebar li {
    margin-bottom: 5px;
}

.toc-sidebar a {
    display: block;
    padding: 13px 17px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.toc-sidebar a:hover {
    background: rgba(8, 98, 77, 0.774);
    border-left-color: var(--primary-dark-green);
    padding-left: 25px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2500;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

.slide-2 {
    width: 100%;
    min-height: 100vh;
    background-color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.idea-container {
    width: 100%;
    text-align: center;
    color: white;
}

.idea-container h2 {
    font-family: 'Days One';
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.idea-container h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-dark-green);
    border-radius: 2px;
}

.slogans {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.slogan-card {
    flex: 1;
    min-width: 280px;
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    background: rgb(7, 48, 44, 0.667);
    transition: all 0.3s ease;
}

.slogan-card:hover {
    transform: translateY(-10px);
    background: var(--primary-dark-green);
}

.slogan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.slogan-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.why-us-section {
    width: 100%;
    min-height: 100vh;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(7, 48, 44, 0.133);
    border-radius: 50%;
    pointer-events: none;
}

.why-us-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(17, 67, 60, 0.134);
    border-radius: 50%;
    pointer-events: none;
}

.why-us-container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.why-us-title {
    text-align: center;
    font-family: 'Days One';
    font-size: 4.5rem;
    color: var(--text-light);
    margin-bottom: 60px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 20px;
}

.why-us-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 5px;
    background: var(--primary-dark-green);
    border-radius: 3px;
}

.reasons-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.reason-card {
    flex: 1;
    min-width: 150px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 0;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 400px;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); */
    background: linear-gradient(135deg, rgb(7, 48, 44, 0.667) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.reason-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-dark-green);
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.4);
}

.reason-card:hover::before {
    opacity: 1;
}

.reason-card:hover {
    background: var(--primary-dark-green);
    border-color: white;
}

.reason-header {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 50px;
    padding-bottom: 0px; 
}

.reason-header h3 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
    text-align: center;
}

.reason-body {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
}

.reason-text {
    font-size: 1.1rem;
    line-height: 2.5;
    margin: 0;
    max-width: 280px;
    text-align: center;
    opacity: 0.95;
}

.contact-form-section {
    width: 100%;
    min-height: 100vh;
    background: var(--primary-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.contact-form-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-container {
    max-width: 700px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    padding: 50px 60px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.form-title {
    font-family: 'Days One';
    text-align: center;
    font-size: 3rem;
    color: rgb(10, 122, 96);
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #2e5a3a;
    border-radius: 2px;
}

.form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 1rem;
    color: #2e5a3a;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-label i {
    color: var(--primary-dark-green);
    margin-right: 8px;
}

.form-input,
.form-textarea  {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--text-light);
    color: #333;
    font-family: inherit;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px  rgba(13, 149, 117, 0.475);
}

.form-input:hover,
.form-textarea:hover {
    border-color: #2e5a3a;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #aaa;
    font-style: italic;
    font-size: 0.95rem;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.errorlist {
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
    color: #dc3545;
    font-size: 0.9rem;
}

.errorlist li {
    padding: 5px 0 0 0;
}

.form-input.error,
.form-textarea.error {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.non-field-errors {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
    color: #721c24;
    list-style: none;
}

.non-field-errors li {
    margin: 0;
}

.form-submit {
    width: 100%;
    padding: 16px 30px;
    background: var(--light-green);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid var(--light-green);
}

.form-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.form-submit:hover {
    background: rgba(8, 93, 73, 0.604);
    transform: translateY(-3px);
}

.form-submit:hover i {
    transform: translateX(5px);
}

.messages {
    margin-bottom: 25px;
}

.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert i {
    font-size: 1.2rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* Адаптивность */
@media screen and (max-width: 1024px) {
    .container {
        width: 95%;
        min-height: 70vh;
    }

    .project-title {
        font-size: 3.5rem;
    }

    .project-description {
        font-size: 1.4rem;
    }

    .idea-container h2 {
        font-size: 3.5rem;
    }

    .why-us-title {
        font-size: 4rem;
    }

    .reason-card {
        height: 380px;
    }

    .reason-header h3 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 900px) {
    .site-header {
        padding: 12px 30px;
    }

    .header-logo {
        width: 50px;
        height: 50px;
        padding: 12px;
    }

    main {
        margin-top: 100px;
    }

    .container {
        flex-direction: column;
        min-height: auto;
    }

    .left-half, .right-half {
        padding: 40px 30px;
        min-width: auto;
    }

    .project-title {
        font-size: 3rem;
        text-align: center;
    }

    .project-description {
        font-size: 1.3rem;
        text-align: center;
        max-width: 100%;
        line-height: 1.4;
    }

    .logo-container {
        margin-bottom: 30px;
    }

    .logo {
        max-width: 70%;
    }

    .toc-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }

    .idea-container h2 {
        font-size: 3rem;
    }

    .slogans {
        gap: 20px;
        margin-top: 40px;
    }

    .slogan-card {
        min-width: 240px;
        padding: 30px 20px;
    }

    .slogan-card h3 {
        font-size: 1.6rem;
    }

    .why-us-title {
        font-size: 3.5rem;
        margin-bottom: 40px;
    }

    .reasons-grid {
        gap: 30px;
    }

    .reason-card {
        min-width: 250px;
        height: 360px;
    }

    .reason-header h3 {
        font-size: 1.7rem;
    }

    .reason-text {
        font-size: 1rem;
        line-height: 2.2;
    }

    .contact-form-container {
        max-width: 600px;
        padding: 40px;
    }

    .form-title {
        font-size: 2.5rem;
    }

    .footer-content {
        gap: 60px;
    }

    .footer-contacts {
        gap: 40px;
    }

    .footer-contact-value {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .site-header {
        padding: 10px 20px;
    }

    .header-logo {
        width: 45px;
        height: 45px;
        padding: 10px;
    }

    main {
        margin-top: 80px;
    }

    .left-half, .right-half {
        padding: 30px 20px;
    }

    .project-title {
        font-size: 2.5rem;
    }

    .project-description {
        font-size: 1.2rem;
    }

    .toc-sidebar {
        width: 280px;
        padding: 15px 20px 60px 20px;
    }

    .toc-sidebar h2 {
        font-size: 1.6rem;
    }

    .toc-sidebar a {
        padding: 11px 14px;
        font-size: 1rem;
    }

    .idea-container h2 {
        font-size: 2.5rem;
    }

    .slogans {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .slogan-card {
        width: 100%;
        max-width: 400px;
        padding: 25px 20px;
    }

    .slogan-card h3 {
        font-size: 1.5rem;
    }

    .slogan-card p {
        font-size: 1rem;
    }

    .why-us-title {
        font-size: 3rem;
        margin-bottom: 30px;
    } 

    .reasons-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .reason-card {
        width: 100%;
        max-width: 400px;
        height: 350px;
    }

    .reason-header {
        padding: 30px;
        padding-bottom: 0;
    }

    .reason-header h3 {
        font-size: 1.6rem;
    }

    .reason-body {
        padding: 20px 20px;
    }

    .reason-text {
        line-height: 2;
    }

    .contact-form-section {
        padding: 40px 15px;
    }

    .contact-form-container {
        padding: 30px 25px;
        border-radius: 30px;
    }

    .form-title {
        font-size: 2rem;
    }

    .form-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-input, .form-textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .form-submit {
        padding: 14px 25px;
        font-size: 1.1rem;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-contacts {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-contact-item {
        width: 100%;
        justify-content: center;
    }

    .footer-contact-value {
        font-size: 1.1rem;
    }

    .footer-contact-icon {
        width: 45px;
        height: 45px;
    }

    .footer-contact-icon i {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .site-header {
        padding: 8px 15px;
    }

    .header-logo {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    main {
        margin-top: 70px;
    }

    .project-title {
        font-size: 2rem;
    }

    .project-description {
        font-size: 1rem;
        line-height: 1.3;
    }

    .toc-sidebar {
        width: 250px;
    }

    .toc-close {
        top: 15px;
        right: 15px;
        font-size: 1.8rem;
    }

    .toc-sidebar h2 {
        font-size: 1.4rem;
    }

    .toc-sidebar a {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .idea-container h2 {
        font-size: 2rem;
    }

    .slogan-card {
        padding: 20px 15px;
    }

    .slogan-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .why-us-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .why-us-title:after {
        width: 150px;
        height: 4px;
    }

    .reason-card {
        height: 320px;
    }

    .reason-header {
        padding: 20px;
        padding-bottom: 0;
    }

    .reason-header h3 {
        font-size: 1.4rem;
    }

    .reason-body {
        padding: 15px 15px;
    }

    .reason-text {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .contact-form-container {
        padding: 25px 20px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .form-title:after {
        width: 80px;
    }

    .form-input, .form-textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .form-submit {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .alert {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-contact-icon {
        width: 40px;
        height: 40px;
    }

    .footer-contact-icon i {
        font-size: 1.2rem;
    }

    .footer-contact-value {
        font-size: 1rem;
    }

    .footer-contact-label {
        font-size: 0.8rem;
    }

    .site-footer {
        padding: 20px 15px;
    }
}

@media screen and (max-width: 360px) {
    .project-title {
        font-size: 1.8rem;
    }

    .toc-sidebar {
        width: 220px;
    }

    .why-us-title {
        font-size: 1.8rem;
    }

    .reason-card {
        height: 300px;
    }

    .reason-header h3 {
        font-size: 1.3rem;
    }

    .reason-text {
        font-size: 0.9rem;
    }

    .form-title {
        font-size: 1.6rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .container {
        min-height: 85vh;
    }

    .left-half, .right-half {
        padding: 40px 30px;
    }

    .project-title {
        font-size: 3rem;
    }

    .reasons-grid {
        flex-wrap: nowrap;
    }

    .reason-card {
        min-width: 200px;
    }
}

@media screen and (min-width: 1400px) {
    .container, .idea-container, .why-us-container, .footer-content {
        max-width: 1400px;
    }

    .project-title {
        font-size: 4.5rem;
    }

    .why-us-title {
        font-size: 5rem;
    }
}

@media screen and (max-width: 480px) {
    .expert-image {
        max-width: 130px;
    }

    .expert-photo.large .expert-image {
        max-width: 180px;
    }
}

@media screen and (min-width: 1400px) {
    .container,
    .idea-container,
    .block-content,
    .why-us-container,
    .footer-content {
        max-width: 1600px;
    }
}

@media screen and (min-width: 1800px) {
    .container,
    .idea-container,
    .block-content,
    .why-us-container,
    .footer-content {
        max-width: 1800px;
    }
}