
* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }
        body {
            background-color: #ffffff;
            color: #1a1a1a;
            line-height: 1.6;
            padding: 3rem 3rem;
        }
        .container {
            max-width: 80rem;
            margin: 0 auto;
        }

        /* Заголовок страницы */
        .header-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .header-title h1 {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 8px;
            color: #000000;
        }
        .header-title p {
            font-size: 18px;
            font-weight: 600;
            color: #333333;
        }

        /* Блок с динамическими датами */
        .meta-info {
            margin-bottom: 35px;
            font-size: 16px;
        }
        .meta-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .date-highlight {
            font-weight: 700;
            color: #000000;
        }

        /* Текст договора */
        .contract-body {
            font-size: 15px;
            color: #222222;
            text-align: justify;
            margin-bottom: 50px;
        }
        .contract-body h3 {
            font-size: 16px;
            font-weight: 700;
            margin: 30px 0 15px 0;
            text-transform: uppercase;
            color: #000000;
        }
        .contract-body p {
            margin-bottom: 12px;
            text-indent: 0px;
        }
        .requisites {
            margin-top: 30px;
            background-color: #fafafa;
            padding: 25px;
            border-radius: 6px;
            font-size: 14px;
            line-height: 1.8;
        }

        /* Стили формы (Точь-в-точь как на скриншоте) */
        .form-section {
            max-width: 550px;
            margin: 60px auto 20px auto;
            text-align: center;
        }
        .form-group {
            text-align: left;
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            font-size: 16px;
            color: #333333;
            margin-bottom: 10px;
        }
        .form-group input[type="text"],
        .form-group input[type="tel"] {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #5a9a10; /* Фирменная рамка */
            border-radius: 12px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.2s;
            background-color: #ffffff;
        }
        .form-group input::placeholder {
            color: #a0a0a0;
        }

        /* Чекбокс согласия */
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            text-align: left;
            margin-bottom: 35px;
            cursor: pointer;
            font-size: 15px;
        }
        .checkbox-group input {
            margin-right: 12px;
            margin-top: 4px;
            width: 18px;
            height: 18px;
            accent-color: #198a2c;
        }

        /* Стильная терракотовая кнопка */
        .submit-btn {
            background-color: #198A2CFF; /* Цвет кнопки со скриншота */
            color: #ffffff;
            border: none;
            padding: 16px 45px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: background-color 0.2s, transform 0.1s;
            display: inline-block;
        }
        .submit-btn:hover {
            background-color: 198A2CFF;
        }
        .submit-btn:active {
            transform: scale(0.98);
        }