 body {
            font-family: "Ruda", sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff5ee;
            
        }
        .header-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px; 
    position: relative; 
            height: 120px;
            z-index: 1000;
}

        .logo-container {
            position: absolute;
            top: 15px;
            left: 20px;
            height: 120px; 
            margin: 0 auto;

        }
        .logo {
            height: 100%;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        nav {
            display: flex;
            justify-content: flex-end;
            padding: 5px 10px;
            margin-right: 50px;
            font-weight: bold;
        }

        nav a {
            color: #5d5855;
            padding: 14px 0px;
            margin: 0px 12px;
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;

        }

        nav a:hover {
            color: #5d5855;
            transform: translateY(-2px);
        }

        nav a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #5d5855;
            animation: underline 0.3s ease forwards;
        }

        nav a.active {
            color: #5d5855;
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #5d5855;
        }

        @keyframes underline {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }

        .content {
            top: -60px;
            max-width: 1600px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            min-height: 500px;
            color: #928f88;
                        height: 95vh;

        }
.width-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    height: 100%; 
}
        .send {
            position: absolute;
            left: 0%;
            bottom: 0%;
            transform: translateY(-50%);
            width: 40%;
            padding: 30px;
            z-index: 2;
        }

        .text-container {
            position: absolute;
            left: 0%;
            top: 35%;
            transform: translateY(-50%);
            width: 40%;
            padding: 30px;
            z-index: 2;
        }
        h3 {
            color: #5d5855;
        }
        .text-container h3 {
            color: #5d5855;
            font-weight: 900;
            font-size: 30px;
        }
        .text-container p {
            color: #5d5855;
            font-weight: 400;
            font-size: 28px;
        }
        .image-container {
            position: absolute;
            right:0%;
            top: 45%;
            transform: translateY(-50%);
            width: 60%;
            z-index: 1;
        }

        .image-container img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .text-type1 {
            font-family: "Rubik Mono One", monospace;
            font-size: 72px;
            margin: 0 0 10px;
            font-weight: 900;
            color: #5d5855;
        }

        .buy-button {
            margin: 20px;
            display: inline-block;
            padding: 10px 15px;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            color: white;
            background: linear-gradient(135deg, #a6a293 0%, #908e86 100%);
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(151, 148, 146, 0.3);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .buy-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(151, 148, 146, 0.5);
            background: linear-gradient(135deg, #908e86 0%, #a6a293 100%);
        }
        .phone-input {
            margin-top: 15px;
            display: inline-block;
            padding: 8px 20px;
            width: 250px;
            font-size: 18px;
            font-family: inherit;
            color: #333;
            background: white;
            border: 2px solid #a6a293;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(151, 148, 146, 0.1);
            transition: all 0.3s ease;
            text-align: left;
        }

        .phone-input:focus {
            outline: none;
            border-color: #908e86;
            box-shadow: 0 2px 10px rgba(151, 148, 146, 0.2);
        }


.footer-content {
    position: absolute;
    right: 0;
    bottom: 20px;
    text-align: right;
    color: #5d5855;
        z-index: 997;
}

.social-icons {
    display: flex;
    flex-direction: column; 
    align-items: flex-end; 
    gap: 10px; 
    margin-bottom: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.copyright {
    font-size: 14px;
    color: #928f88;
}

@media (max-width: 768px) {
html, body {
                overflow-x: hidden;
                width: 100%;
            }
    .logo-container {
        position: relative;
        height: 80px;
        top: auto;
        left: auto;
        text-align: center;
    }
    nav a {
            font-size: 10px;
        margin: 0 6px;
    }
    
    .content {
        min-height: auto;
        height: auto;
        padding-bottom: 100px; 
        position: relative;
        top: 0;
    }
    
    .text-container {
        position: static;
        width: 100%;
        margin: 20px auto;
        transform: none;
        padding: 15px;
    }
    
    .send {
        position: static;
        width: 100%;
        margin: 20px auto;
        transform: none;
        padding: 15px;
    }
    
    .image-container {
        position: static;
        width: 90%;
        margin: 20px auto;
        transform: none;
    }
        .text-type1 {
            font-size: 42px;

        }
    .footer-content {
        position: static;
        text-align: center;
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icon {
        margin: 0 7px;
    }
    .phone-input {
        width: 180px;
    }


}


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        

        .burger-container {
            position: absolute;
            right: 0;
            padding: 20px;
            z-index: 1000;
            cursor: pointer;
        }
        
        .burger-menu {
            width: 30px;
            height: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .burger-line {
            width: 100%;
            height: 3px;
            background-color: #5d5855;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        

        .burger-container.open .burger-line:nth-child(1) {
            transform: translateY(8.5px) rotate(45deg);
        }
        
        .burger-container.open .burger-line:nth-child(2) {
            opacity: 0;
        }
        
        .burger-container.open .burger-line:nth-child(3) {
            transform: translateY(-8.5px) rotate(-45deg);
        }
        

        .menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background-color: white;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
            padding: 70px 20px 20px;
            z-index: 999;
        }
        
        .menu.open {
            right: 0;
        }
        
        .menu ul {
            list-style: none;
        }
        
        .menu li {
            margin-bottom: 15px;
        }
        
        .menu a {
            text-decoration: none;
            color: #5d5855;
            font-size: 18px;
            transition: color 0.2s;
        }
        
        .menu a:hover {
            color: #989898;
        }
.menu p {
                text-decoration: none;
    font-weight: 900;
            color: #5d5855;
            font-size: 23px;
    margin-bottom: 20px;
}
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            z-index: 998;
        }
        
        .overlay.open {
            opacity: 1;
            visibility: visible;
        }