
@media (orientation: landscape){
    * {
        box-sizing: border-box;
    }
    #brandName{
        font-size: 2.5vh;
        background-color: #CFB59E;
        border: none;
        color: #6C4D38
    }
    body {
        font-family: 'Georgia', 'Times New Roman', serif;
        background: #FDF9F6;
        color: #333;
        line-height: 1.6;
        margin: 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Header */
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: linear-gradient(135deg, #CFB59E, #D4C0A8);
        padding: 0 5vw;
        box-shadow: 0 4px 20px rgba(108, 77, 56, 0.15);
        backdrop-filter: blur(10px);
    }

    #icon {
        height: 50px;
        width: 120px;
        border-radius: 10px;
        background: #F8EADE;
        object-fit: contain;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    #icon:hover {
        transform: scale(1.05);
    }

    #burger-btn {
        display: none;
    }

    #left {
        display: flex;
        gap: 20px;
        align-items: center;
        margin-left: auto;
    }

    #left .ancor {
        height: 45px;
        padding: 0 25px;
        border: none;
        border-radius: 25px;
        background: #F8EADE;
        color: #6C4D38;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(108, 77, 56, 0.1);
        letter-spacing: 0.02em;
    }

    #left .ancor:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(108, 77, 56, 0.2);
        background: #fff;
    }

    #ancor2 {
        width: auto !important;
    }

    /* Content */
    .content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 5vw;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    #about {
        background: #fff;
        border-radius: 30px;
        padding: 60px;
        box-shadow: 0 10px 50px rgba(108, 77, 56, 0.08);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .projectName {
        font-family: 'Georgia', 'Times New Roman', serif;
        font-size: 48px;
        color: #6C4D38;
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 20px;
        letter-spacing: 0.02em;
        line-height: 1.2;
    }

    .projectName::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #CFB59E, transparent);
        border-radius: 2px;
    }

    .why {
        font-size: 24px;
        color: #6C4D38;
        text-align: center;
        font-style: italic;
        line-height: 1.4;
        font-weight: 500;
        margin: 15px 0;
    }

    .why.slogan {
        color: #8B6F58;
        font-size: 20px;
        font-weight: 400;
        max-width: 800px;
    }

    .projectDescription {
        width: 100%;
        margin-top: 40px;
    }

    .projectDescription ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .aboutBrand {
        font-size: 18px;
        color: #555;
        margin: 0;
        padding: 25px 25px 25px 50px;
        position: relative;
        line-height: 1.6;
        background: #FDF9F6;
        border-radius: 15px;
        border-left: 5px solid #CFB59E;
    }

    .aboutBrand::before {
        content: '•';
        position: absolute;
        left: 20px;
        top: 25px;
        color: #CFB59E;
        font-weight: bold;
        font-size: 24px;
    }

    /* Trust Block */
    #trustBlock {
        display: flex;
        gap: 50px;
        align-items: center;
        background: #fff;
        border-radius: 30px;
        padding: 50px;
        box-shadow: 0 10px 50px rgba(108, 77, 56, 0.08);
        border-top: 5px solid #CFB59E;
    }

    #trustBlock .myPhoto {
        width: 350px;
        height: 90%;
        border-radius: 20px;
        object-fit: cover;
        box-shadow: 0 10px 40px rgba(108, 77, 56, 0.15);
        flex-shrink: 0;
    }

    #trustBlock .block-content {
        flex: 1;
        text-align: left;
    }

    #trustBlock h3 {
        font-family: 'Georgia', 'Times New Roman', serif;
        font-size: 2.5vw;
        color: #6C4D38;
        margin: 0 0 20px 0;
        font-weight: 700;
        line-height: 1.3;
    }

    #trustBlock p {
        font-size: 1.5vw;
        color: #555;
        line-height: 1.6;
        margin: 0 0 30px 0;
    }

    .trust-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 15px 40px;
        background: linear-gradient(135deg, #CFB59E, #D4C0A8);
        color: #fff;
        border: none;
        border-radius: 25px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        cursor: pointer;
        box-shadow: 0 5px 20px rgba(108, 77, 56, 0.15);
        transition: all 0.3s ease;
        letter-spacing: 0.02em;
    }

    .trust-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(108, 77, 56, 0.25);
    }

    /* Brand sections */
    .brand {
        max-width: 1200px;
        margin: 60px auto;
        padding: 50px;
        background: #fff;
        border-radius: 30px;
        box-shadow: 0 10px 50px rgba(108, 77, 56, 0.08);
    }

    .brand > h1 {
        font-family: 'Georgia', 'Times New Roman', serif;
        font-size: 42px;
        color: #6C4D38;
        text-align: center;
        margin-bottom: 40px;
        font-weight: 700;
        position: relative;
        padding-bottom: 20px;
    }

    .brand > h1::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #CFB59E, transparent);
        border-radius: 2px;
    }

    .brand > div {
        background: #FDF9F6;
        border-left: 8px solid #CFB59E;
        border-radius: 20px;
        padding: 40px;
        margin: 30px 0;
        box-shadow: 0 5px 20px rgba(108, 77, 56, 0.06);
    }

    .brand h3 {
        font-size: 2.1vw;
        color: #071742 !important;
        margin: 20px 0 15px;
        font-weight: 600;
        line-height: 1.4;
    }

    .brand ul {
        padding-left: 0;
        margin: 20px 0;
        list-style: none;
        /*display: grid;*/
        /*grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));*/
        gap: 15px;
    }

    .brand .aspoect  {
        font-size: 1.5vw;
        color: #555;
        margin: 0;
        line-height: 1.6;
        position: relative;
        padding-left: 35px;
    }

    .brand .lib::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #CFB59E;
        font-weight: bold;
        font-size: 24px;
    }

    .checkList {
        list-style: none;
        padding: 0;
        margin: 30px 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 20px;
    }

    .checkList li {
        position: relative;
        padding-left: 50px;
        margin-bottom: 0;
        color: #555;
        line-height: 1.6;
        font-size: 18px;
    }

    .checkList li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 3px;
        width: 30px;
        height: 30px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C4D38' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
    }

    /* About Me */
    #withoutBlock {
        text-align: center;
        color: #6C4D38;
        font-size: 42px;
        margin: 60px 0 30px;
        font-family: 'Georgia', 'Times New Roman', serif;
        letter-spacing: 0.03em;
    }

    #me {
        max-width: 1200px;
        margin: 0 auto 60px;
        padding: 50px;
        background: #fff;
        border-radius: 30px;
        box-shadow: 0 10px 50px rgba(108, 77, 56, 0.08);
        display: flex;
        gap: 50px;
    }

    #me .myPhoto {
        width: 350px;
        border-radius: 20px;
        object-fit: cover;
        box-shadow: 0 10px 40px rgba(108, 77, 56, 0.15);
        flex-shrink: 0;
    }

    #aboutMe {
        flex: 1;
    }

    #pam {
        text-align: left;
    }

    #pam h1 {
        font-size: 36px;
        color: #6C4D38;
        margin-bottom: 20px;
    }

    #pam h3 {
        font-size: 22px;
        color: #8B6F58;
        margin: 0 0 15px;
        font-weight: 600;
        line-height: 1.4;
    }

    #pam ul {
        padding-left: 30px;
        margin: 15px 0;
        list-style: none;
    }

    #pam .lib {
        font-size: 17px;
        color: #555;
        margin: 12px 0;
        line-height: 1.6;
        position: relative;
        padding-left: 30px;
    }

    #pam .lib::before {
        content: '—';
        position: absolute;
        left: 0;
        color: #CFB59E;
        font-weight: bold;
    }

    #iKnow {
        font-size: 1.5vw;
        color: #071742;
        /*background: linear-gradient(135deg, #F8EADE, #FFF9F5);*/
        padding: 1vh;
        border-radius: 15px;
        margin: 1vh 0;
        font-style: italic;
        line-height: 1.6;
        /*border-left: 5px solid #CFB59E;*/
    }

    /* Tariffs */
    #simple {
        max-width: 1200px;
        margin: 60px auto;
        padding: 50px;
        background: #fff;
        border-radius: 30px;
        box-shadow: 0 10px 50px rgba(108, 77, 56, 0.08);
    }

    #fairs {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .tarif {
        width: 45%;
        background: linear-gradient(135deg, #F8EADE, #FFF9F5);
        border-radius: 25px;
        padding: 40px 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 5px 25px rgba(108, 77, 56, 0.1);
        border: 2px solid rgba(207, 181, 158, 0.2);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .tarif:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(108, 77, 56, 0.2);
    }

    .tName {
        font-family: 'Georgia', 'Times New Roman', serif;
        font-size: 32px;
        font-weight: 700;
        color: #6C4D38;
        margin-bottom: 25px;
        letter-spacing: 0.02em;
    }

    .aboutTarif {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 20px 0 30px;
        width: 100%;
        text-align: left;
    }

    .aspoect {
        font-size: 1.4vw;
        color: #555;
        padding-left: 35px;
        position: relative;
        line-height: 1.6;
    }

    .aspoect::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #CFB59E;
        font-weight: bold;
        font-size: 20px;
    }

    .firFloor {
        font-weight: 600;
        color: #6C4D38;
        font-style: italic;
        margin-bottom: 10px;
    }

    .prise {
        font-size: 36px;
        font-weight: 800;
        color: #fff;
        background: linear-gradient(135deg, #CFB59E, #D4C0A8);
        padding: 15px 50px;
        border-radius: 50px;
        margin-top: auto;
        letter-spacing: 0.05em;
        box-shadow: 0 5px 20px rgba(108, 77, 56, 0.2);
    }

    /* FAQ */
    #faq {
        max-width: 1000px;
        margin: 60px auto;
        padding: 50px;
        background: #fff;
        border-radius: 30px;
        box-shadow: 0 10px 50px rgba(108, 77, 56, 0.08);
    }

    .faq-title {
        font-family: 'Georgia', 'Times New Roman', serif;
        font-size: 42px;
        color: #6C4D38;
        text-align: center;
        margin: 0 0 50px 0;
        font-weight: 700;
        position: relative;
        padding-bottom: 20px;
    }

    .faq-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #CFB59E, transparent);
        border-radius: 2px;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .faq-item {
        padding: 35px;
        background: #FDF9F6;
        border-radius: 20px;
        border-left: 8px solid #CFB59E;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        transform: translateX(10px);
        box-shadow: 0 5px 20px rgba(108, 77, 56, 0.1);
    }

    .faq-question {
        font-size: 22px;
        color: #6C4D38;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 20px;
        position: relative;
        padding-left: 50px;
    }

    .faq-question::before {
        content: '?';
        position: absolute;
        left: 0;
        top: 0;
        width: 35px;
        height: 35px;
        background: linear-gradient(135deg, #CFB59E, #D4C0A8);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 800;
        box-shadow: 0 3px 10px rgba(108, 77, 56, 0.15);
    }

    .faq-answer {
        font-size: 18px;
        color: #555;
        line-height: 1.6;
        padding-left: 50px;

    }

    /* Registration forms */
    .reg, .chansToAsk {
        max-width: 65vw;
        margin: 60px auto;
        padding: 50px;
        background: #fff;
        border-radius: 30px;
        box-shadow: 0 10px 50px rgba(108, 77, 56, 0.08);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .reg > div, .chansToAsk > div {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        margin: 30px 0;
    }

    input {
        width: 100%;
        height: 55px;
        padding: 0 25px;
        border: 2px solid #E8D4C4;
        border-radius: 15px;
        background: #fff;
        font-size: 1.5vw;
        outline: none;
        transition: all 0.3s ease;
        font-family: 'Georgia', 'Times New Roman', serif;
    }

    input:focus {
        border-color: #CFB59E;
        background: #FDF9F6;
        transform: scale(1.01);
    }

    input::placeholder {
        color: #999;
    }

    textarea {
        width: 100%;
        min-height: 120px;
        padding: 0 25px;
        border: 2px solid #E8D4C4;
        border-radius: 15px;
        background: #fff;
        font-size: 1.5vw;
        line-height: 1.6;
        font-family: 'Georgia', 'Times New Roman', serif;
        color: #333;
        outline: none;
        resize: vertical;
        transition: all 0.3s ease;
        margin: -0.7vw 0;
    }

    textarea:focus {
        border-color: #CFB59E;
        box-shadow: 0 0 0 3px rgba(207, 181, 158, 0.3);
    }

    textarea::placeholder {
        color: #999;
    }

    .send {
        width: 100%;
        max-width: 400px;
        height: 55px;
        border: none;
        border-radius: 25px;
        background: linear-gradient(135deg, #CFB59E, #D4C0A8);
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 20px;
        letter-spacing: 0.03em;
        box-shadow: 0 5px 20px rgba(108, 77, 56, 0.15);
    }

    .send:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(108, 77, 56, 0.25);
    }

    .send:active {
        transform: scale(0.98);
    }

    /* Footer */
    #main-footer {
        background: #6C4D38;
        color: #F8EADE;
        padding: 60px 5vw;
        margin-top: 60px;
        border-radius: 30px 30px 0 0;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-title {
        font-family: 'Georgia', 'Times New Roman', serif;
        font-size: 28px;
        font-weight: 700;
        margin: 0 0 30px 0;
        color: #CFB59E;
        letter-spacing: 0.02em;
    }

    .social-icons {
        display: flex;
        gap: 40px;
    }

    .social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        background-color: #F8EADE;
        border-radius: 50%;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

    .social-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    }

    .social-btn svg {
        width: 40px;
        height: 40px;
        transition: transform 0.3s ease;
    }

    .social-btn:hover svg {
        transform: scale(1.1);
    }

    .doc-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 400px;
    }

    .doc-link {
        color: #F8EADE;
        text-decoration: none;
        text-align: left;
        font-size: 1.3vw;
        border-radius: 15px;
        transition: all 0.3s ease;
        letter-spacing: 0.02em;
    }

    .doc-link:hover {
        background-color: #F8EADE;
        color: #6C4D38;
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    /* Animations */
    html {
        scroll-behavior: smooth;
    }

    h1, h2, h3, h4 {
        font-family: 'Georgia', 'Times New Roman', serif;
    }

    p {
        line-height: 1.6;
    }
    .projectDescription{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly


    }
    .toTheLeft{
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
    }
    .heading {
        color: #27478e !important;
        font-style: italic;
    }
    #outOfPk{
        display: none;
    }
    .longAncor{
        font-size: 1vh;
    }
}