html, body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: white;
    box-sizing: border-box;
}

.flex-container, .containerflex2 {
    display: flex;
    flex-wrap: wrap; /* allows items to move to the next line on small screens */
    gap: 20px;       /* space between items */
}
.flex-container > div, .containerflex2 > div {
    flex: 1 1 300px; /* grow, shrink, min-width 300px */
}

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

input, textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.header-flex .logo {
    max-width: 150px;  /* shrink logo on small screens */
    height: auto;
}

.header-flex .item2 {
    font-size: 1rem;
    margin-top: 5px;   /* adds spacing when stacked */
}

li {
    margin: 15px;
}

/* Header */
.header-flex {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 0 50px;
    height: 100px;
	 flex-wrap: wrap;
}

.logo {
    margin-left: 200px;
    width: 200px;
    height: auto;
}

.item2 {
    font-size: 25px;
    margin-right: 200px;
}

/* Hero Section */
.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ed95d1;
    padding: 50px 100px;
    gap: 20px;
    flex-wrap: wrap;
}

.one {
    width: 50%;
    min-width: 300px;
}

.headline {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.p1 {
    font-size: 20px;
    font-weight: 500;
    color: white;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn1  {
    background-color: #ccc;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn1:hover {
    background-color: #a09e9e;
}

.img {
    width: 40%;
    max-width: 500px;
    height: auto;
    box-shadow: rgb(121, 119, 119) 0 0 10px 3px;
    
}

/* Groom Room Prices */
.flex-container2 {
    display: flex;
    flex-direction: column;
    background-color: rgb(222, 214, 214);
    align-items: center;
    padding: 50px 100px;
    gap: 50px;
}

    .heading-txt {
        font-weight: 900;
        font-size: 36px;
        text-align: center;
    }
    .containerflex2 {
        display: flex;
        flex-direction: row;      /* layout items horizontally */
        gap: 30px;                /* spacing between boxes */
        flex-wrap: wrap;          /* wraps boxes on smaller screens */
        justify-content: center;  /* centers the row horizontally */
        align-items: flex-start;  /* optional, aligns boxes at top */
    }
        .tail-wag{
            display: flex;
            flex-direction: column;
            background-color: white;
            width: 325px;
            height: 450px;
            text-align: left;
            box-shadow: rgb(121, 119, 119) 0 0 10px 3px;
            padding: 10px;
        }

            .tail-wag h2 {
                display: flex;
                align-items: center;
                justify-content: center; /* centers text horizontally */
                text-align: center; 
                text-decoration: underline;

            }
            .tail-wag-price {
                padding-top: 10px;
                text-align:center; 
                font-size: 30px;
                font-weight: 700;
            }

        .happy-paws{
            display: flex;
            flex-direction: column;
            background-color: white;
            width: 325px;
            height: 450px;
            text-align: left;
            box-shadow: rgb(121, 119, 119) 0 0 10px 3px;
            padding: 10px; 
        }
            .happy-paws h2 {
                display: flex;
                align-items: center;
                justify-content: center; /* centers text horizontally */
                text-align: center;  
                text-decoration: underline;
            }

            .happy-paws-price {
                padding-top: 155px;
                text-align:center; 
                font-size: 30px;
                font-weight: 700;
            }

         .luxury-pooch{
            display: flex;
            flex-direction: column;
            background-color: white;
            width: 325px;
            height: 450px;
            text-align: left;
            box-shadow: rgb(121, 119, 119) 0 0 10px 3px;
            padding: 10px; 
        }
            .luxury-pooch h2 {
                display: flex;
                align-items: center;
                justify-content: center; /* centers text horizontally */
                text-align: center;  
                text-decoration: underline;
            }

            .luxury-pooch-price {
                text-align:center; 
                font-size: 30px;
                font-weight: 700;
            }


.inner-flex2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.contact-header {
    padding-bottom: 100px;
}

.box {
    border: 4px solid #3882F6;
    border-radius: 25px;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    box-sizing: border-box;
}

.box-text {
    font-size: 16px;
    font-weight: 100;
}

/* Testimonial */
.flex-container3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ed95d1;
    padding: 50px 100px;
    gap: 20px;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: 36px;
}

.containerflex3 {
    display: flex;
    flex-direction: row;      /* layout items horizontally */
    gap: 30px;                /* spacing between boxes */
    flex-wrap: wrap;          /* wraps boxes on smaller screens */
    justify-content: center;  /* centers the row horizontally */
    align-items: flex-start;
}

.map{
    flex: 1;
    height: 575px;
}

.form-container {
      flex: 1;
      flex-direction: row;
      margin: auto;
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .form-container h2 {
      margin-bottom: 20px;
      text-align: center;
      color: #333;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      margin-bottom: 5px;
      color: #555;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
    }

    .form-group textarea {
      resize: vertical;
      height: 120px;
    }

    .form-group button {
      background-color: #ed95d1;;
      color: white;
      border: none;
      padding: 12px 20px;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
      width: 100%;
    }

    .form-group button:hover {
      background-color: #e965bf;;
    }
