:root {
            --primary-color: #FFD700;
            --secondary-color: #333;
            --light-color: #f9f9f9;
            --gray-color: #e5e5e5;
            --dark-gray: #666;
            --white: #fff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Manrope';
        }
        
        body {
            background-color: #fff;
            color: var(--secondary-color);
            line-height: 1.6;
        }
        
        header {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 0;
            text-align: center;
            
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }
        
        header .logo {
            position: relative;
            max-width: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        header .logo:before {
            content: '';
            position: absolute;
            top: 16px;
            left: 0;
            width: 100%;
            height: 4px;
            background: #FFCC00;
            z-index: -1;
        }

.format-item_img img {
	max-width: 110px;
}
        
        header .logo img {
            max-width: 100%;   
        }
        
        .nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .nav ul li {
			list-style: none;	
		}

        .nav a {
            color: var(--secondary-color);
            text-decoration: none;
            
            font-family: Inter Tight;
            font-weight: 400;
            font-size: 18px;
            line-height: 110%;
    
            color: #514B45;
            
            transition: all .5s;
        }
        
        .nav a:hover {
            text-decoration: underline;
            color: var(--primary-color);
        }
        
        .hero {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 15px;
            
            background-color: var(--primary-color);
            padding: 60px;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .hero h1 {
            font-family: Inter Tight;
            font-weight: 400;
            font-size: 72px;
            line-height: 100%;
            text-align: center;
            color: #3F3420;
        }
        
        .hero h1 span {
            font-weight: 700;   
        }
        
        .stamp-constructor {
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 40px;
            border-radius: 30px;
            overflow: hidden;
        }
        
        .stamp-constructor iframe {
            max-width: 1000px;
            width: 100%;
            height: 590px;
            border-radius: 15px;
            border: none;
            margin: 0 auto;
        }
        
        .stamp-constructor-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #ccc;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 15px;
        }
        
        .stamp-constructor-header button {
            background-color: #fff;
            border: none;
            padding: 5px 10px;
            border-radius: 3px;
            cursor: pointer;
        }
        
        .stamp-constructor-content {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .left-panel {
            flex: 1;
            min-width: 300px;
            background-color: #fff;
            padding: 15px;
            border-radius: 5px;
        }
        
        .right-panel {
            flex: 1;
            min-width: 300px;
            background-color: #fff;
            padding: 15px;
            border-radius: 5px;
        }
        
        .tab-container {
            display: flex;
            border-bottom: 1px solid #ccc;
            margin-bottom: 15px;
        }
        
        .tab {
            padding: 10px 15px;
            cursor: pointer;
            border: 1px solid transparent;
            border-bottom: none;
        }
        
        .tab.active {
            background-color: #fff;
            border: 1px solid #ccc;
            border-bottom: none;
        }
        
        .slider-container {
            margin: 15px 0;
        }
        
        .slider-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        
        .slider {
            width: 100%;
            height: 5px;
            background: #ddd;
            border-radius: 5px;
            position: relative;
        }
        
        .slider-handle {
            width: 15px;
            height: 15px;
            background: var(--primary-color);
            border-radius: 50%;
            position: absolute;
            top: -5px;
            cursor: pointer;
        }
        
        .button-group {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 23px 33px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            
            font-family: Inter Tight;
            font-weight: 400;
            font-size: clamp(16px, 2vw, 22px);
            
            line-height: 110%;
            color: #514B45;
            
            transition: all .5s;
        }
        
        .btn:hover,
        .btn-primary {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            font-weight: 700;
        }
        
        .btn-secondary {
            background-color: #E9E9E9;
            color: var(--secondary-color);
        }
        
        .section {
            padding: 60px 0;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            margin-bottom: 35px;
            
            font-family: Inter Tight;
            text-align: left;
            font-weight: 400;
            font-size: 56px;
            line-height: 100%;
        }
        
        .section-title span {
            font-family: Inter Tight;
            font-weight: 700;
        }
        
        .instructions {
        }
        
        .instructions .step {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
            
            font-family: Inter Tight;
            font-weight: 400;
            font-size: 16px;
            line-height: 140%;
            color: #514B45;
        }
        
        .step-number {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            width: 30px;
            height: 30px;
            margin-right: 15px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 100;
            
            font-family: Inter Tight;
            font-weight: 700;
            font-size: 18px;
            line-height: 150%;
            color: #3F3420;
        }
        
        .step-content {
            flex: 1;
        }
        
        .pricing-section {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .pricing-card {
            background-color: #fff;
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 100%;
            border: 1px solid var(--primary-color);
        }
        
        .pricing-card h4 {
            font-family: Manrope;
            font-weight: 700;
            font-size: 16px;
            line-height: 100%;
            color: #514B45;
        }
        
        .pricing-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .pricing-header h3 {
            margin: 0 0 5px;
            
            font-family: Manrope;
            font-weight: 700;
            font-size: 34px;
            line-height: 100%;
            color: #3F3420;
        }
        
        .pricing-header p {
            font-family: Manrope;
            font-weight: 400;
            font-size: 18px;
            line-height: 110%;
            color: #7E796E;
        }
        
        .price {
            background-color: #514B45;
            padding: 10px;
            border-radius: 10px;
            
            font-family: Manrope;
            font-weight: 600;
            font-size: 56px;
            line-height: 100%;
            color: #fff;
        }
        
        .price span {
            font-family: Manrope;
            font-weight: 600;
            font-size: 26px;
            line-height: 100%;
            color: #969696;
        }
        
        .format-example {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 15px 0 25px;
            
            background: #F5F5F5;
            padding: 25px;
            border-radius: 10px;
        }
        
        .format-item {
            max-width: 110px;
            
            text-align: center;
            
            font-family: Inter Tight;
            font-weight: 500;
            font-size: 14px;
            line-height: 110%;
            text-transform: uppercase;
            color: #7E796E;
        }
        
        .format-item span {
            display: block;
            margin: 10px 0 0;   
        }
        
        .file-format {
            display: flex;
            gap: 10px;
            padding: 25px;
            flex-wrap: wrap;
            margin: 15px 0;
            background: #F5F5F5;
            border-radius: 8px;
        }
        
        .file-icon {
            text-align: center;
        }
        
        .file-icon span {
            display: block;
            margin: 5px 0 0;
            
            font-family: Inter Tight;
            font-weight: 600;
            font-size: 16px;
            line-height: 110%;
            text-transform: uppercase;
            color: #454951;
        }
        
        .download-btn {
            position: relative;
            margin: 15px 0 0;
            
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 18px 33px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            
            font-family: Inter Tight;
            font-weight: 600;
            font-style: SemiBold;
            font-size: 18px;
            line-height: 110%;
            color: #3F3420;
			text-decoration: none;
            
            transition: all .5s;
        }
        
        .download-btn:after {
            content: '';
            width: 24px;   
            height: 24px;
            background: url(../img/load.svg) center center no-repeat;
        }
        
        
        .download-btn:hover {
            background-color: #E9E9E9;
            color: var(--secondary-color);
        }
        
        .why-make-stamp {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 35px;
        }
        
        .links {
            display: flex; 
            gap: 30px; 
            flex-wrap: wrap;
        }
        
        .links .links_wrap {
            flex: 1; 
            min-width: 300px;
        }
        
        .reason {
            background: transparent;
            padding: 25px 32px;
            border-radius: 20px;
            
            background: linear-gradient(white, white) padding-box, linear-gradient(345deg, #BFBFBF -0.8%, #FAFAFA 51.6%, #BFBFBF 99.2%) border-box;
            border: 1px solid transparent;
        }
        
        .features {
            margin-top: 40px;
            
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
        }
        
        .feature {
            background-color: #fff;
            padding: 40px;
            border-radius: 20px;
            flex: 1;
            min-width: 250px;
            
            box-shadow: 0px 4px 50px 0px #7E65411A;
            
            background: linear-gradient(white, white) padding-box, linear-gradient(155deg, #FFCC00 -0.8%, #FAFAFA 51.6%, #FFCC00 99.2%) border-box;
            border: 1px solid transparent;
            
            font-family: Manrope;
            font-weight: 400;
            font-size: 19px;
            line-height: 150%;
            color: #514B45;
        }
        
        .feature:nth-child(1) {
            grid-column: span 3;   
        }
        
        .feature:nth-child(2) {
            grid-column: span 3;   
        }
        
        .feature:nth-child(3) {
            grid-column: span 2; 
            
            background: linear-gradient(white, white) padding-box, linear-gradient(125deg, #FFCC00 -0.8%, #FAFAFA 51.6%, #FFCC00 99.2%) border-box;
            border: 1px solid transparent;
        }
        
        .feature:nth-child(4) {
            grid-column: span 2;  
            
            background: linear-gradient(white, white) padding-box, linear-gradient(125deg, #FFCC00 -0.8%, #FAFAFA 51.6%, #FFCC00 99.2%) border-box;
            border: 1px solid transparent;  
        }
        
        .feature:nth-child(5) {
            grid-column: span 2;   
            
            background: linear-gradient(white, white) padding-box, linear-gradient(125deg, #FFCC00 -0.8%, #FAFAFA 51.6%, #FFCC00 99.2%) border-box;
            border: 1px solid transparent; 
        }
        
        .feature:nth-child(6) {
            grid-column: span 3;  
            
            background: linear-gradient(white, white) padding-box, linear-gradient(125deg, #FFCC00 -0.8%, #FAFAFA 51.6%, #FFCC00 99.2%) border-box;
            border: 1px solid transparent;  
        }
        
        .feature:nth-child(7) {
            grid-column: span 2;  
            
            background: linear-gradient(white, white) padding-box, linear-gradient(125deg, #FFCC00 -0.8%, #FAFAFA 51.6%, #FFCC00 99.2%) border-box;
            border: 1px solid transparent;  
        }
        
        .feature:nth-child(8) {
            grid-column: span 1;   
            
            background: linear-gradient(white, white) padding-box, linear-gradient(125deg, #FFCC00 -0.8%, #FAFAFA 51.6%, #FFCC00 99.2%) border-box;
            border: 1px solid transparent; 
        }
        
        .feature-icon {
            position: relative;
            display: inline-block;
            font-size: 2rem;
            margin-bottom: 20px;
            background: transparent;
        }
        
        .feature-icon img {
            position: relative;
            width: 44px;
            height: 44px;
            z-index: 2;
        }
        
        .feature-icon:before {
            content: '';
            width: 44px;
            height: 44px;
            border-radius: 22px;
            position: absolute;
            top: 0;
            left: 0;
            box-shadow: 0px 4px 40px 0px #FFCC0066;
            background: #ffcc001a;
            z-index: 1;
        }
        
        .testimonials {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        
        .testimonial {
            background-color: #fff;
            padding: 30px;
            flex: 1;
            min-width: 300px;    
            
            background: linear-gradient(white, white) padding-box, linear-gradient(308deg, #BFBFBF -0.8%, #FAFAFA 51.6%, #BFBFBF 99.2%) border-box;
            border: 1px solid transparent;
            border-radius: 20px;
            
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .testimonial-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            
            border-bottom: 1px solid #FFCC00;
        }
        
        .testimonial-header .testimonial-header_logo {
            max-width: 130px;
            width: 100%;
        }
        
        .testimonial-header .testimonial-header_date {
            font-family: Inter Tight;
            font-weight: 400;
            font-size: 16px;
            line-height: 100%;
            color: #BEBAAE;
        }
        
        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
            color: gold;
            
            margin: 2px 0 0;
        }
        
        .rating span {
            font-size: 24px;
            line-height: 20px;
        }
        
        .rating .score {
            font-family: Inter Tight;
            font-weight: 400;
            font-size: 16px;
            line-height: 100%;
            color: #BEBAAE;
        }
        
        .faq-item {
            background-color: #fff;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 10px;
            
            background: linear-gradient(white, white) padding-box, linear-gradient(177deg, #FFCC00 -0.8%, #FAFAFA 51.6%, #FFCC00 99.2%) border-box;
    border: 1px solid transparent;
            
            cursor: pointer;
        }
        
        .faq-question {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            
            font-family: Manrope;
            font-weight: 500;
            font-size: 24px;
            line-height: 110%;
        }
        
        .faq-question:after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 23px;
            height: 23px;
            background: url(../img/plus.svg) center center;
        }
        
        .faq-answer {
            display: none;
            margin-top: 10px;
            
            padding-top: 10px;
            border-top: 1px solid #ddd;
            
            font-family: Inter Tight;
            font-weight: 400;
            font-size: 20px;
            line-height: 150%;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        .footer {
            padding: 40px 20px;
            margin-top: 40px;
            
            color: #514B45;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column .footer-column_row {
            display: flex;
            gap: 80px;
        }
        
        .footer-column_logo {
            position: relative;
        }
        
        .footer-column_menu a {
            font-family: Manrope;
            font-weight: 700;
            font-size: 20px;
            line-height: 140%;
            color: #282B30;
        }
        
        .footer-column h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            text-decoration: none;
        }
        
        .footer-column a:hover {
            text-decoration: underline;
        }
        
        .contact-form {
            background-color: #fff;
            padding: 30px 35px;
            border-radius: 20px;
            box-shadow: 0px 4px 50px 0px #7E65411A;
        }
        
        .contact-form .form_title {
            font-family: Manrope;
            font-weight: 600;
            font-size: clamp(18px, 2vw, 28px);
            line-height: 120%;
            color: #3F3420;
            
            margin: 0 0 10px;
        }
        
        .contact-form .form_subtitle {
            font-family: Manrope;
            font-weight: 400;
            font-size: clamp(16px, 2vw, 18px);
            line-height: 140%;
            color: #514B45;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group:nth-child(1) {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 20px 25px;
            border-radius: 10px;
            background: #F5F5F5;
            border: none;
            
            font-family: Manrope;
            font-weight: 400;
            font-size: clamp(14px, 2vw, 18px);
            line-height: 120%;
            color: #7E796E;
        }
        
        .form-group textarea {
            height: 100px;
        }
        
        .checkbox {
            display: flex;
            align-items: center;
            margin: 10px 0;
        }
        
        .checkbox input {
            margin-right: 10px;
        }
        
        .submit-btn {
            background-color: var(--primary-color);
            padding: 19px 25px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
			
			font-family: Inter Tight;
			font-weight: 600;
			font-size: 18px;
			line-height: 110%;
			color: #3F3420;
			
			transition: all .5s;
        }
        
		.submit-btn:hover {
			background-color: #E9E9E9;
            color: var(--secondary-color);
		}

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }
            
            .pricing-card {
                width: 100%;
            }
            
            .nav {
                flex-direction: column;
                gap: 10px;
            }
        }
        
    .footer-column_text {
        margin: 50px 0 0;
        display: flex;
        flex-direction: column;
        gap: 70px;
        
        font-family: Manrope;
        font-weight: 400;
        font-size: 20px;
        line-height: 140%;
        color: #514B45;
    }
    
    .footer-column_text a {
        font-family: Inter Tight;
        font-weight: 500;
        font-size: 20px;
        line-height: 140%;
        color: #282B30;
    }
    
    .footer-column_copyright {
        display: flex;
        flex-direction: column;
        gap: 10px;
        
        font-family: Manrope;
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        color: #514B45;
    }
    
    .footer-column .contact-form {
        background: linear-gradient(white, white) padding-box, linear-gradient(308deg, #dcdcdc  -0.8%, #FAFAFA 51.6%, #dcdcdc 99.2%) border-box;
        border: 1px solid transparent;
        border-radius: 20px;
    }
    
    .checkbox {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }
        
        /* Hide the default checkbox */
        .checkbox input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }
        
        /* Custom checkbox styling */
        .checkbox label {
            position: relative;
            padding-left: 32px;
            cursor: pointer;
            font-size: 1rem;
            color: #333;
            user-select: none;
            transition: color 0.2s ease;
        }
        
        /* Custom checkbox box */
        .checkbox label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            border: 2px solid #FFCC00;
            border-radius: 4px;
            background: white;
            transition: all 0.2s ease;
        }
        
        /* Checkmark inside the box */
        .checkbox label::after {
            content: '';
            position: absolute;
            left: 8px;
            top: 50%;
            transform: translateY(-50%) scale(0);
            width: 8px;
            height: 8px;
            background: #FFCC00;
            border-radius: 2px;
            transition: transform 0.2s ease;
        }
        
        /* Hover effects */
        .checkbox:hover label::before {
            background: #fff9e6;
        }
        
        /* Checked state */
        .checkbox input[type="checkbox"]:checked + label::before {
            background: white;
        }
        
        .checkbox input[type="checkbox"]:checked + label::after {
            transform: translateY(-50%) scale(1);
        }
        
        /* Focus state for accessibility */
        .checkbox input[type="checkbox"]:focus + label::before {
            box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.3);
        }
        
        /* Active state */
        .checkbox input[type="checkbox"]:active + label::before {
            background: #fff9e6;
        }
        
        .section-header {
            display: flex;
            gap: 40px;
        }
        
        .section-header .section-title {
            flex: 1.1;
            
            font-family: Inter Tight;
            font-weight: 400;
            font-size: clamp(24px, 6vh, 56px);
            line-height: 100%;
            color: #3F3420;
        }
        
        .section-header .section-text {
            flex: 1.4;
            
            font-family: Inter Tight;
            font-weight: 300;
            font-size: 20px;
            line-height: 150%;
            color: #514B45;
        }
        
        .section-header .section-text p {
            margin: 0 0 15px;
        }
        
        .instructions_wrapper {
            background: #fff; 
            padding: 50px; 
            border-radius: 20px;
            margin-top: 20px;
            
            box-shadow: 0px 4px 50px 0px #7E65411A;
            background: linear-gradient(white, white) padding-box, linear-gradient(340deg, #BFBFBF -0.8%, #FAFAFA 51.6%, #BFBFBF 99.2%) border-box;
            border: 1px solid transparent;
        }
        
        .instructions_wrapper__div {
            display: none; 
            gap: 30px
        }
        
        .instructions_wrapper__div.instructions_wrapper__div--active {
            display: flex;
        }
        
        .instructions_wrapper__div .instructions {
            max-width: calc(100% - 360px);
        }
        
        .instructions_wrapper__img {
            flex: 1; 
            min-width: 330px; 
            display: flex; 
            align-items: flex-start; 
            justify-content: center;
        }
        
        .instructions_wrapper__img img {
            max-width: 100%;   
        }
        
        .section.pricing .section-header {
            max-width: 800px;
        }
        
        .testimonial-body {
            margin: 15px 0; 
            padding-top: 10px;
            
            font-family: Inter Tight;
            font-weight: 400;
            font-size: 16px;
            line-height: 140%;
            color: #7E796E;
        }
    
    .testimonial-footer {    
        display: flex; 
        align-items: center; 
        gap: 10px;
    }
    
    .testimonial-footer .name {
        font-family: Inter Tight;
        font-weight: 700;
        font-size: 22px;
        line-height: 110%;
        color: #282B30;
    }
    
    .burger {
        display: none;
    }
    
    @media (max-width: 1200px) {
        header .nav {
            display: none;
        }
        
        .burger {
            display: block;
            width: 45px;
            height: 45px;
            background: url(../img/hamburger.svg);
            background-size: contain;
        }
        
        .nav.nav--active {
            display: flex;
            align-items: center;
            background: #fff;
            width: calc(100% - 40px);
            position: absolute;
            top: 80px;
            padding: 30px 0;
        }
        
        .hero {
            max-width: calc(100% - 40px);    
        }
        
        header,
        .hero,
        .section {
            margin: 0 20px;
            box-sizing: border-box;
        }
        
        header {
            max-width: calc(100% - 40px);
        }
        
        .footer-content {
            flex-direction: column;
        }
        
        .footer-column .contact-form {
            padding: 20px;
            max-width: 300px;
        }
    }
    
    @media (max-width: 1200px) {
        .footer-column .footer-column_row {
            flex-direction: column;
        }
        
        .feature:nth-child(1),
        .feature:nth-child(2),
        .feature:nth-child(3),
        .feature:nth-child(4),
        .feature:nth-child(5),
        .feature:nth-child(6),
        .feature:nth-child(7),
        .feature:nth-child(8) {
            grid-column: span 3;
            padding: 25px;
        }
        
        .footer-content,
        .footer-column_text,
        .footer-column .footer-column_row {
            gap: 20px;
        }
        
        .footer-column_text {
            margin: 20px 0 0;
        }
        
        .footer {
            margin: 0;
        }
        
        .reason {
            padding: 10px 15px;
            border-radius: 10px;
        }
        
        .btn {
            padding: 13px 18px;
        }
        
        .instructions_wrapper__div {
            flex-direction: column;
        }
        
        .instructions_wrapper__div .instructions {
            max-width: 100%;
        }
        
        .section-header {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .instructions_wrapper {
            padding: 20px;
        }
        
        .instructions_wrapper__img {
            min-width: auto;
        }
        
        .instructions_wrapper__div {
            gap: 10px;
        }
        .pricing-section {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
        }
    }
    
     footer .footer-column_logo {
         position: relative;
     }
    
    footer .footer-column_logo:before {
    content: '';
    position: absolute;
    max-width: 316px;
    top: 19px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #FFCC00;
    z-index: -1;
}

 @media (max-width: 600px) {
    .feature:nth-child(1), .feature:nth-child(2), .feature:nth-child(3), .feature:nth-child(4), .feature:nth-child(5), .feature:nth-child(6), .feature:nth-child(7), .feature:nth-child(8) {
        grid-column: span 6;
        padding: 25px;
    }
    .footer-column .contact-form {
        max-width: 100%;
        width: 100%;
    }
    .section {
        padding: 30px 0;
    }
    .button-group {
        gap: 10px;
    }
	 .nav ul {
		 flex-direction: column;
	 }
	 .stamp-constructor {
		border-radius: 0;
	}
	 .stamp-constructor iframe {
		 min-height: 765px;
		border-radius: 0;
	}
	 
 }

.form-group.city {
	display: none;
}

.form-text {
	padding: 10px 0 0;
	color: #4caf50;
	font-weight: 700;
}

.form-text:empty {
	padding: 0;
}