.creative-art-form {
        max-width: 800px;
        margin: 2rem auto;
        padding: 2rem;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 30px rgba(0,0,0,0.08);
        font-family: 'Segoe UI', Roboto, sans-serif;
    }

    .form-segment {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eee;
    }

    .form-segment:last-of-type {
         border-bottom: none;
         padding-bottom: 0;
    }

	h3{
		    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: "Playfair", Sans-serif;
		}
    label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: #555;
    }

    select, input[type="text"], input[type="email"], input[type="tel"], textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background-color: #fff;
        font-size: 1rem;
        transition: border-color 0.3s;
        margin-bottom: 1rem;
        box-sizing: border-box;
    }

    select:focus, input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus {
        outline: none;
        border-color: #4a90e2;
        box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
    }

    .form-layout input, .form-layout select, .form-layout textarea {
        margin-bottom: 0;
    }

    .format-choices {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .format-option {
        border: 2px solid #e9ecef;
        border-radius: 8px;
        padding: 1rem;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }

    .format-option:hover {
        border-color: #4a90e2;
    }

    .format-option.chosen {
        background: #f0f7ff;
        border-color: #4a90e2;
        color: #4a90e2;
    }

    .format-option h4 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .dimension-select-wrapper {
        margin-top: 1rem;
    }

    .cost-notice {
        background: #f8f9fa;
        padding: 0.5rem;
        border-radius: 8px;
        margin: 1rem 0;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #555;
    }
    .cost-notice strong {
         color: #333;
    }

    .dimension-help {
        font-size: 0.9rem;
        color: #666;
        margin-top: 0.5rem;
        font-style: italic;
    }

    .form-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-layout div {
        display: flex;
        flex-direction: column;
    }

    .custom-requests textarea {
        width: 100%;
        min-height: 120px;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        resize: vertical;
    }

    button[type="submit"] {
        background: #4a90e2;
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.3s;
        width: 100%;
        margin-top: 1.5rem;
    }

    button[type="submit"]:hover {
        background: #3a7bc8;
    }

    .form-note {
        font-size: 0.8rem;
        color: #777;
        text-align: center;
        margin-top: 1rem;
    }

    .image-upload-wrapper {
        border: 2px dashed #ddd;
        border-radius: 6px;
        padding: 20px;
        text-align: center;
        background: #fafafa;
        cursor: pointer;
        transition: border-color 0.3s;
        margin-bottom: 1.5rem;
    }

    .image-upload-wrapper:hover {
        border-color: #4a90e2;
    }

    .image-upload-label {
        display: block;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .image-upload-field {
        display: none;
    }

    .image-upload-btn {
        background: #4a90e2;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 4px;
        cursor: pointer;
        transition: background 0.3s;
         display: inline-block;
    }

    .image-upload-btn:hover {
        background: #3a7bc8;
    }

    .image-preview {
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .image-preview img {
/*         width: 80px;
        height: 80px; */
		max-height:150px !important;
/*         object-fit: cover; */
        border-radius: 4px;
        border: 1px solid #eee;
    }

    .estimate-summary {
        background: #f8f9fa;
        border-radius: 8px;
        padding: 1.5rem;
        margin: 1.5rem 0;
        border: 1px solid #e9ecef;
    }

    .estimate-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #333;
        font-weight: 600;
        border-bottom: 1px solid #ddd;
        padding-bottom: 0.5rem;
    }

    .estimate-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.8rem;
    }

    .estimate-label {
        font-weight: 500;
        color: #555;
    }

    .estimate-value {
        font-weight: 600;
        color: #333;
    }

    .total-cost {
        font-size: 1.4rem;
        color: #2c7be5;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #ddd;
        text-align: right;
        font-weight: 700;
    }

    .total-cost strong {
         font-size: 1.5rem;
    }

    .image-limit-note {
        font-size: 0.8rem;
        color: #666;
        margin-top: 5px;
    }

    .dimension-reference {
        font-size: 0.8em;
        color: #666;
        margin-left: 5px;
    }

    .idea-gallery-link {
        display: inline-block;
        margin: 10px 0;
        color: #4a90e2;
        text-decoration: none;
        font-weight: 500;
    }
     .idea-gallery-link:hover {
         text-decoration: underline;
     }

  
    .mandatory-field::after {
        content: " *";
        color: #dc3545;
    }

    .form-complete {
        background: #d4edda;
        color: #155724;
        padding: 1.5rem;
        border-radius: 8px;
        margin: 2rem 0;
        text-align: center;
        font-size: 1.1rem;
        box-shadow: 0 2px 10px rgba(0,128,0,0.1);
    }
     .form-complete h3 {
         color: #155724;
         margin-top: 0;
     }

    .dimension-visual {
        margin: 2rem 0;
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
    }

    .dimension-visual h4 {
         font-size: 1.2rem;
         margin-bottom: 1.5rem;
         color: #333;
    }

    .dimension-visual img {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
		input::placeholder {
            background-color: #fff;
            font-size:14px;
            color:#a8a8a8;

    @media (max-width: 600px) {
        .form-layout {
            grid-template-columns: 1fr;
        }
        .format-choices {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        }
        .format-option {
             padding: 1rem;
        }
         h3 {
            font-size: 1.2rem;
         }
         .creative-art-form {
            padding: 1.5rem;
         }
    }
