body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.form-container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.form-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    text-transform: uppercase;
    font-weight: 800;
    text-align: left !important;
}

.container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.card .title {
    font-size: 16px;
    color: #333;
    margin: 15px 0 10px;
    line-height: 1.4;
    flex-grow: 1;
    font-weight: bold; /* Dodane wytłuszczenie */
}

.card .price {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.card .price strong {
    font-weight: 600;
}

.card .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-left: 5px;
}

.card .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card.selected {
    background-color: #416eb6;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card.selected .title,
.card.selected .quantity,
.card.selected p {
    color: white;
}

.card.selected .quantity-selector {
    display: flex;
}

.card.selected .quantity-selector button {
    background-color: white;
    color: #416eb6;
    border-color: white;
}

.card.selected .price {
    background-color: #ffe03b;
}

.card.selected .price strong {
    color: #333;
}

.card.selected .price .old-price {
    color: #666;
}

.quantity-selector {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    gap: 10px;
}

.quantity-selector button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
}

.quantity-selector button:hover {
    background-color: #f0f0f0;
}

.quantity-selector .quantity {
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    body {
        padding: 5px;
    }

    .form-container {
        width: 100%;
        padding: 0;
    }

    .container {
        width: 100%;
        margin: 0 auto 5px auto;
        padding: 0;
        grid-template-columns: 1fr;
    }

    .card {
        min-height: 180px;
        padding: 15px;
    }

    .card .title {
        font-size: 14px;
        margin: 10px 0;
    }

    .card .price {
        font-size: 16px;
        padding: 6px 10px;
        gap: 6px;
    }

    .card .price .old-price {
        font-size: 12px;
    }

    .card .card-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }

    .quantity-selector {
        margin: 10px 0;
        gap: 8px;
    }

    .quantity-selector button {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .quantity-selector .quantity {
        font-size: 14px;
    }

    .address-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .address-section {
        padding: 0;
        margin: 10px 0;
        width: 100%;
    }

    .address-section .input-group {
        margin: 5px 0;
        width: 100%;
    }

    .address-section .input-group input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .address-section .input-group.full-width {
        padding: 0;
        width: 100%;
    }

    .input-group label {
        margin-bottom: 5px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
    }

    .input-group {
        margin: 5px 0;
    }

    .input-group.full-width {
        padding: 0;
    }
}

.dropdown-section {
    width: 93%; /* Match width of four cards plus gaps */
    margin: 0 auto;
    border-radius: 5px;
}

.dropdown {
    display: block;
    background-color: #fff;
    margin-bottom: 20px;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #fff;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.dropdown-label {
    flex: 1;
    font-weight: bold;
    font-size: 16px;
}

.dropdown-arrow {
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
    font-size: 20px;
}

.dropdown-content {
    padding: 20px;
}

.dropdown-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.counters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    width: 100%;
}

.counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 15px;
    min-width: 200px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.counter .button {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    flex-shrink: 0;
    margin: 0 8px;
    position: relative;
    z-index: 1;
}

.counter .button:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.counter .button:active {
    background: #e0e0e0;
    transform: scale(0.95);
}

.counter-value {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
}

.counter-value .number {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    min-width: 24px;
    text-align: center;
}

.counter-value .text {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    min-width: 80px;
}

@media screen and (min-width: 769px) {
    .counter {
        flex: 1;
        max-width: calc(50% - 10px);
    }
}

@media screen and (max-width: 768px) {
    .counters-container {
        flex-direction: column;
        gap: 15px;
    }

    .counter {
        width: 100%;
        padding: 8px 12px;
    }

    .counter .button {
        width: 28px;
        height: 28px;
        font-size: 18px;
        margin: 0 6px;
    }

    .counter-value .number {
        font-size: 16px;
    }

    .counter-value .text {
        font-size: 14px;
    }
}

@supports (-webkit-touch-callout: none) {
    .counter .button {
        padding: 0;
        line-height: 32px;
    }
}

.kitchen-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    width: 100%;
    flex-wrap: wrap;
    padding: 0 15px;
    box-sizing: border-box;
}

.kitchen-option {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    min-width: 120px;
    white-space: nowrap;
}

.kitchen-option input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
}

.kitchen-option span {
    font-size: 14px;
    color: #333;
}

.or-text {
    font-size: 14px;
    color: #666;
}

@media screen and (max-width: 768px) {
    .kitchen-options {
        flex-direction: column;
        padding: 0 10px;
        gap: 10px;
        max-width: 100%;
    }

    .kitchen-option {
        width: 100%;
        justify-content: center;
        padding: 12px 15px;
        min-width: 0;
        
    }

    .or-text {
        margin: 0;
    }
}

.subscription-section {
    margin: 30px 0;
}

.subscription-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.subscription-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.subscription-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 140px;
}

.subscription-card .discount {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ffe03b;
    color: #333;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
}

.subscription-card .frequency {
    font-size: 16px;
    margin: 25px 0 15px;
    display: block;
    font-weight: bold;
}

.subscription-card .price {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

.subscription-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.subscription-card.selected {
    border-color: #416eb6;
    background-color: #416eb6;
    color: white;
}

.subscription-card.selected .frequency,
.subscription-card.selected .price {
    color: white;
}

@media screen and (max-width: 768px) {
    .subscription-card {
        min-height: 120px;
    }

    .subscription-card .discount {
        top: 6px;
        left: 6px;
        padding: 2px 5px;
        font-size: 10px;
    }

    .subscription-card .frequency {
        margin: 20px 0 10px;
    }

    .subscription-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 10px;
    }

    .subscription-card {
        width: 100%;
        padding: 15px;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
    }

    .subscription-card .discount-badge {
        position: static;
        width: fit-content;
    }

    .subscription-card .title {
        margin: 0;
        flex: 1;
    }

    .subscription-card .price {
        margin: 0;
        font-size: 18px;
        white-space: nowrap;
    }

    .subscription-card .description {
        display: none;
    }
}

.subscription-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.subscription-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.subscription-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.subscription-card.selected {
    background-color: #416eb6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.subscription-card .discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffe03b;
    color: #333;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.subscription-card .frequency {
    font-size: 16px;
    margin: 15px 0;
    display: block;
    font-weight: bold;
}

.subscription-card .price {
    font-size: 24px;
    font-weight: bold;
    margin-top: 15px;
    display: block;
}

.subscription-card .emoji {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.subscription-card.selected .frequency,
.subscription-card.selected .price {
    color: white;
}

@media screen and (max-width: 768px) {
    .subscription-cards {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .subscription-card {
        width: 100%;
        margin: 0;
    }
}

.dropdown-section {
    width: 93%; /* Match width of four cards plus gaps */
    margin: 0 auto;
    border-radius: 5px;
}

.dropdown {
    display: block;
    background-color: #fff;
    margin-bottom: 20px;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #fff;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.dropdown-label {
    flex: 1;
    font-weight: bold;
    font-size: 16px;
}

.dropdown-arrow {
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
    font-size: 20px;
}

.dropdown-content {
    padding: 20px;
}

.dropdown-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.checkboxes {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.checkbox-container {
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f0f0f0;
    border-radius: 4px;
}

.checkbox-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.checkbox-content img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.checkbox-text {
    flex: 1;
}

.checkbox-text h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.checkbox-text p {
    margin: 5px 0 0;
    color: #666;
}

.checkbox-container .price {
    background-color: #ffe03b;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
}

.checkbox-label {
    font-weight: bold;
}

.price-tag {
    background-color: #ffe03b;
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
}

.section-label {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 500;
}

.subscription-section {
    margin-top: 40px;
    text-align: center;
}

.subscription-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: bold;
}

.subscription-section .highlight {
    color: #2962ff;
}

.subscription-section .subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.subscription-cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.subscription-card {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 200px;
    align-items: center;
    background-color: #f0f0f0;
    border: none;
    border-radius: 4px;
}

.subscription-card.selected {
    background-color: #2962ff;
    color: white;
    border: none;
}

.subscription-card .discount {
    background-color: #ffe03b;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 18px;
}

.subscription-card.selected .discount {
    background-color: #ffe03b;
    color: black;
}

.subscription-card .frequency {
    font-weight: 500;
    font-size: 16px;
    margin: 10px 0;
}

.subscription-card .price {
    font-size: 24px;
    font-weight: bold;
    background-color: transparent;
}

.subscription-card.selected .price {
    color: white;
}

.subscription-card .emoji {
    font-size: 24px;
    margin-top: 10px;
}

.addons-section {
    margin-top: 40px;
}

.addons-section h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
    margin-bottom: 30px;
    padding: 10px;
}

.addon-card {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f0f0f0;
    min-height: 200px;
    border: none;
    border-radius: 4px;
    margin: 0;
    box-sizing: border-box;
}

.addon-card.selected {
    background-color: #2962ff;
    color: white;
}

.addon-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.addon-card .addon-title {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: auto;
    width: 100%;
}

.addon-card .addon-price {
    background-color: #ffe03b;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    color: black;
}

.addon-card.selected .addon-price {
    background-color: #ffe03b;
    color: black;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.cleaning-options {
    background: white;
    padding: 40px 10px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.option-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.option-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.option-card img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.option-card h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 400;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.current-price {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.date-time-section {
    margin: 30px 0;
    padding: 20px 10px 20px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.date-time-section .section-label {
    margin-top: 0;
}

.calendar-container {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    width: 100%;
}

.calendar-time-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.month-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.month-selector button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 5px 10px;
    color: #333;
}

.month-name {
    font-size: 18px;
    font-weight: bold;
}

.calendar-grid {
    width: 100%;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 10px;
}

.weekdays div {
    padding: 8px;
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.days div {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    border: 1px solid #eee;
}

.days div:hover:not(.disabled) {
    background-color: #f0f0f0;
}

.days div.selected {
    background-color: #416eb6;
    color: white;
    border-color: #416eb6;
}

.days div.disabled {
    color: #ccc;
    cursor: not-allowed;
    background-color: #f9f9f9;
}

.days div .discount {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e4efe8;
    color: #333;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 2px;
}

.time-column {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
}

.time-slots {
    display: grid;
    gap: 10px;
}

.time-slot {
    padding: 10px;
    text-align: center;
    background-color: white;
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: pointer;
}

.time-slot:hover {
    background-color: #f0f0f0;
}

.time-slot.selected {
    background-color: #416eb6;
    color: white;
    border-color: #416eb6;
}

@media screen and (max-width: 768px) {
    .calendar-time-grid {
        grid-template-columns: 1fr;
    }

    .calendar-container {
        padding: 10px;
        margin: 10px 0;
        width: 100%;
        box-sizing: border-box;
    }

    .days {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 2px;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .days div {
        padding: 8px 4px;
        font-size: 14px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
    }

    .weekdays {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 2px;
        padding: 0;
        margin-bottom: 5px;
    }

    .weekdays div {
        padding: 5px 2px;
        font-size: 12px;
        text-align: center;
        box-sizing: border-box;
    }

    .days div .discount {
        font-size: 8px;
        padding: 1px 2px;
        top: 0;
        right: 0;
    }

    .month-selector {
        padding: 0 5px;
        margin-bottom: 10px;
    }

    .month-selector button {
        padding: 5px;
        font-size: 20px;
    }

    .month-name {
        font-size: 16px;
    }

    .calendar-time-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .time-slots {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        padding: 5px;
    }

    .time-slot {
        padding: 8px 4px;
        font-size: 14px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
        box-sizing: border-box;
        margin: 0;
    }

    .days div.selected,
    .time-slot.selected {
        background-color: #416eb6;
        color: white;
        border-color: #416eb6;
        transform: none;
        font-weight: bold;
    }

    .days div:active,
    .time-slot:active {
        background-color: rgba(0, 72, 186, 0.8);
        color: white;
    }

    .days div.disabled {
        color: #ccc;
        background-color: #f9f9f9;
        pointer-events: none;
    }

    .time-column {
        background-color: transparent;
        padding: 10px 5px;
    }
}

.calendar-section {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.city-selection {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.custom-select {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.custom-select select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.custom-select select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.custom-select .select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #666;
    pointer-events: none;
}

.custom-select select:hover {
    border-color: #0066cc;
}

.custom-select select option {
    padding: 12px;
}

.custom-select select option:first-child {
    color: #666;
}

.phone-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-code {
    min-width: 90px;
}

.country-code select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    outline: none;
}

.country-code select:focus {
    border-color: #007bff;
}

input[type="tel"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.input-group input,
.input-group select,
.input-group textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .input-group input,
    .input-group select,
    .input-group textarea {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .input-group {
        width: 100%;
        padding: 0 5px;
        margin: 5px 0;
        box-sizing: border-box;
    }
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    body {
        padding: 10px;
    }

    .container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 10px;
    }

    .form-title {
        font-size: 24px;
        padding: 0 10px;
    }

    .address-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .option-content {
        padding: 0 10px;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding: 5px;
    }

    .form-container {
        width: 100%;
        padding: 0;
    }

    .container {
        width: 100%;
        margin: 0 auto 30px auto;
        padding: 0;
        grid-template-columns: 1fr;
    }

    .card {
        width: 100%;
        height: auto;
        min-height: 200px;
        margin: 0;
    }

    .form-title {
        font-size: 20px;
        padding: 0 10px;
        text-align: center !important;
        margin: 15px 0;
    }

    .section-label {
        font-size: 18px;
        padding: 0 10px;
        margin: 15px 0;
    }

    .address-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
        margin: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
    }

    .phone-input {
        width: 100%;
    }

    .calendar-container {
        padding: 10px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .calendar {
        width: 100%;
        margin: 0;
    }

    .calendar-header {
        padding: 10px;
    }

    .calendar-days {
        gap: 5px;
    }

    .calendar-day {
        padding: 5px;
        font-size: 14px;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .time-slot {
        padding: 8px;
        font-size: 14px;
    }

    .addons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .addon-card {
        width: 100%;
        margin: 0;
    }

    .dropdown-content {
        padding: 10px;
    }

    .counters-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }

    .counter {
        width: 100%;
    }

    .checkbox-container {
        padding: 10px;
        margin: 10px;
    }

    .checkbox-content {
        flex-direction: column;
        gap: 15px;
    }

    .input-group {
        margin-bottom: 10px;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        width: 100%;
        margin-bottom: 10px;
    }

    .submit-section {
        padding: 0 10px;
        margin: 20px 0;
    }

    .submit-button {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}

/* Additional tablet-specific adjustments */
@media screen and (min-width: 769px) and (max-width: 992px) {
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 10px;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .option-content {
        padding: 0 10px;
    }
}

.address-section {
    margin: 20px 0;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.input-group input {
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
}

.input-group input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.input-group.full-width {
    grid-column: span 4;
}

.contact-details {
    margin: 30px 0;
}

.contact-details h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.phone-input-group {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #f9f9f9;
}

.country-code img {
    width: 20px;
    height: 15px;
}

@media screen and (max-width: 992px) {
    .address-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .input-group.full-width {
        grid-column: span 2;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .address-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .input-group.full-width {
        grid-column: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .phone-input-group {
        width: 100%;
    }

    .phone-input-group input {
        flex: 1;
    }

    .country-code {
        padding: 10px;
    }
}

.submit-section {
    margin-top: 2rem;
    padding: 0 20px;
    width: 100%;
}

.submit-button {
    background-color: #4CAF50;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background-color: #45a049;
}

.submit-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .subscription-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 10px;
    }

    .subscription-card {
        width: 100%;
        padding: 15px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .subscription-card .content-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
    }

    .subscription-card .discount-badge {
        position: static;
        margin-right: 10px;
    }

    .subscription-card .title {
        margin: 0;
        flex: 1;
        font-size: 14px;
    }

    .subscription-card .price {
        margin: 0;
        font-size: 16px;
        white-space: nowrap;
    }

    .subscription-card .description {
        display: none;
    }
}

.calendar-container {
    width: 100%;
    margin: 0 auto;
}

.contact-grid,
.address-grid {
    width: 100%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 15px;
}

.city-selection {
    width: 100%;
    margin: 0 auto;
}

.contact-section,
.address-section {
    width: 100%;
    margin: 0 auto;
}

.submit-section {
    width: 100%;
    margin: 20px auto;
}

@media screen and (max-width: 768px) {
    .address-section {
        padding: 0;
        margin: 0;
        background: none;
        border: none;
        box-shadow: none;
    }

    .address-grid {
        padding: 0;
        margin: 0;
        gap: 10px;
    }

    .input-group {
        margin: 0;
        padding: 0;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        width: 100%;
        margin: 0;
        border: 1px solid #ddd;
    }
}
