:root {
    --primary-color: #C0392B;
    --secondary-color: #5DADE2;
    --accent-color: #3498DB;
    --dark-color: #222;
    --light-color: #ECF0F1;
    --success-color: #2ECC71;
    --warning-color: #F1C40F;
    --danger-color: #E74C3C;
    --text-color: #333;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%}
section {
    padding: 80px 0;
    background-color: #fff;
}
h1 {
    font-size: 2rem;
}

h3 {
    font-size: 24px;
    color: #1a1a1a;
}
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: #0056b3;
}
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}
.primary-btn {
    background: linear-gradient(to right, #ffa726, #fb8c00);
    color: #fff;
}
.primary-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    color: #fff;
}
.secondary-btn {
    background-color: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.secondary-btn:hover {
    background-color: var(--light-color);
    color: #222;
}
.btn-cancel-schedule {
    background-color: #f54949;
    color: #fff;
}
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    position: sticky;
    top: 0;
    z-index: 100;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo a {
    display: flex;
    align-items: center;
    transition: var(--transition);
}
.logo a:hover {
    transform: scale(1.03);
}
.site-logo {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    letter-spacing: -.5px;
    position: relative;
}
.site-logo .laundry {
    color: #147d73; /* daha koyu turkuaz */
    margin-left: 2px;
    z-index: 3;
    position: relative;
}

.site-logo .pick {
    color: #c93f00; /* daha koyu turuncu-kırmızı */
    z-index: 1;
    position: relative;
}

.site-logo .up {
    color: #b84d00; /* daha koyu kehribar */
    z-index: 2;
    position: relative;
}

/* Hover durumlarında da yeterli kontrast korunuyor */
.logo a:hover .pick {
    color: #9f2b00;
}
.logo a:hover .up {
    color: #a84400;
}
.logo a:hover .laundry {
    color: #0f5f56;
}

.site-logo span {
    text-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
}
nav ul li {
    margin-left: 25px;
}
nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}
nav ul li a:hover::after, nav ul li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width .3s;
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    margin: 2px 0;
    background-color: var(--dark-color);
    transition: .3s;
}
.hero {
    background-image: url(../img/logo.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 150px 0 200px;
    position: relative;
}

.hero h2 {
    font-size: 1.05rem;         /* ≈ 24px */
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.hero p {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
.schedule-form-overlay {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    background-color: #fff;
    position: relative;
    z-index: 10;
    transition: transform .3s, box-shadow .3s;
    border: 1px solid rgba(0, 0, 0, .08);
}
.schedule-form-overlay:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.section-title {
    text-align: center;
    background: linear-gradient(to right, #ffa726, #fb8c00);
    color: #fff;
    font-size: 1.1rem;
    padding: 1.1rem 1.5rem;
    border-radius: 10px;
    max-width: 700px;
    margin: 0.1rem auto;
    margin-bottom: 15px;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(251, 140, 0, .2);
}

.highlight-text {
  display: block !important; 
    margin-top: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.break-on-mobile {
    display: inline;
}


.schedule-form {
    margin-top: 1.5rem;
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 1rem;
}
.form-group {
    flex: 1;
    min-width: 0;
    margin-bottom: 1.2rem;
    position: relative;
}
.form-group label {
    display: block;
    margin-bottom: .6rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: .3s;
}
.form-group input, .form-group select {
    width: 100%;
    padding: .9rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: .3s;
    background-color: #fff;
    appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: 0;
    border-color: #fb8c00;
    box-shadow: 0 0 0 3px rgba(251, 140, 0, .1);
}
.form-group select {
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-position: right 1rem center;
    background-size: 12px;
    background-repeat: no-repeat;
    padding-right: 2.5rem;
}
#delivery-time {
    background-color: #f9f9f9;
    opacity: 1;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 15px;
}
.confirmation-message {
    text-align: center;
    padding: 2.5rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    max-width: 700px;
    margin: 0 auto;
}
.confirmation-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
    animation: 1s bounce;
}

.confirmation-icon img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

@keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
    transform: translateY(0);
}
40% {
    transform: translateY(-20px);
}
60% {
    transform: translateY(-10px);
}
}.confirmation-message h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}
.confirmation-message p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}
.summary-section {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #eee;
}
.summary-section h3 {
    color: #333;
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
.summary-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.summary-item span:first-child {
    font-weight: 600;
    color: #555;
}
.summary-item span:last-child {
    color: #333;
    text-align: right;
}
.details-form {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    max-width: 700px;
    margin: 0 auto;
}
.details-form h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
.form-group textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    transition: .3s;
}
.important-notice {
    background-color: #fff8e6;
    border-left: 4px solid #ffb74d;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}
.important-notice::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 183, 77, .1) 0, rgba(255, 183, 77, 0) 100%);
    z-index: 0;
}
.important-notice h4 {
    color: #e65100;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
}
.important-notice h4::before {
    content: "⚠";
    margin-right: .5rem;
    font-size: 1.2rem;
}
.important-notice ul {
    padding-left: 1.5rem;
    z-index: 1;
    position: relative;
    list-style: none;
}
.important-notice li {
    margin-bottom: .5rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}
input.error, select.error {
    border-color: var(--danger-color);
    background-color: #fff0f0;
}
#address-error {
    color: var(--danger-color);
    font-size: 1rem;
    margin-top: .5rem;
    padding: .75rem;
    background-color: #fff0f0;
    border-radius: 6px;
    border-left: 3px solid var(--danger-color);
    display: none;
    animation: .3s fadeIn;
}
@keyframes fadeIn {
    from {
    opacity: 0;
    transform: translateY(-10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}#address-error.visible {
    display: block;
}
.services-section {
    background-color: #f9f9f9;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
    opacity: .7;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    display: flex;
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .06);
    transition: .35s;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
    position: relative;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    color: var(--primary-color);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary-color);
    transition: height .35s;
}
.service-card:hover::before {
    height: 100%}
.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(192, 57, 43, .1);
    transition: .3s;
    border-radius: 50%;
    position: relative;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
    background-color: rgba(192, 57, 43, .2);
}
.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.how-it-works-section {
    background-color: #fff;
    text-align: center;
}
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.step {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    padding: 20px;
    position: relative;
}
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    border-radius: 50%}
.step::after {
    content: "";
    position: absolute;
    top: 25px;
    right: -15%;
    width: 30%;
    height: 2px;
    background-color: #ddd;
}
.step:last-child::after {
    display: none;
}
.pricing-section {
    background-color: #f8fbff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.pricing-section h2 {
    margin-bottom: 50px;
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    position: relative;
}
.pricing-section h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}
.pricing-content {
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
}
.price-card {
    max-width: 800px;
    width: 100%;
    background: linear-gradient(145deg, #fff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    padding: 40px;
    transition: .4s;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .05);
    position: relative;
}
.price-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, transparent 50%, rgba(62, 142, 222, .1) 50%);
    z-index: 0;
}
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}
.price-card h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    display: inline-block;
}
.per {
    font-size: 1.2rem;
    color: #666;
    margin-left: 5px;
    font-weight: 500;
}
.price-detail {
    font-size: 1.1rem;
    color: #555;
    margin: 15px 0;
    line-height: 1.6;
}
.cost-estimate {
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    background-color: rgba(62, 142, 222, .1);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    margin: 10px 0 25px;
}
.price-features {
    margin-bottom: 35px;
    text-align: left;
    padding: 0;
    position: relative;
    z-index: 1;
    list-style: none;
}
.price-features li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
}
.price-features li img {
    flex-shrink: 0;
    margin-right: 15px;
    width: 20px;
    height: 20px;
    filter: invert(48%) sepia(79%) saturate(1642%) hue-rotate(190deg) brightness(100%) contrast(95%);
    margin-top: 2px;
}
.price-card .btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    transition: .3s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 1.1rem;
    font-weight: 600;
}
.testimonials-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}
.section-subtitle {
    color: #666;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.testimonial-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%}
.testimonial-meta {
    margin-left: 1rem;
}
.testimonial-meta h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}
.testimonial-location {
    margin: 0;
    color: #666;
    font-size: 1rem;
}
.testimonial-rating {
    margin-bottom: 1rem;
}
.testimonial-rating img {
    width: 16px;
    height: 16px;
    margin-right: 2px;
}
.testimonial-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.testimonial-date {
    color: #888;
    font-size: 1rem;
}
.testimonial-cta {
    text-align: center;
    margin-top: 3rem;
}
.testimonial-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #666;
}
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 60px 0 20px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}
.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}
.footer-logo h2 {
    color: #fff;
    text-align: left;
    margin-bottom: 10px;
}
.footer-links {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}
.footer-social {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}
.footer-links h3, .footer-social h3 {
    color: #fff;
    margin-bottom: 20px;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li a {
    color: #ddd;
}
.footer-links ul li a:hover {
    color: #fff;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}
.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-contact {
    margin-top: 15px;
    font-size: 16px;
}
.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #f5f5f5;
}
.footer-contact a {
    display: flex;
    align-items: center;
    color: #f5f5f5;
}
.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-contact h3 {
    color: #fff;
}
.contact-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 50%;
    margin-right: 10px;
    padding: 5px;
}
.footer-contact a:hover .contact-icon {
    background-color: rgba(255, 255, 255, .2);
    transform: scale(1.1);
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.visually-hidden {
    position: absolute!important;
    width: 1px!important;
    height: 1px!important;
    padding: 0!important;
    margin: -1px!important;
    overflow: hidden!important;
    clip: rect(0, 0, 0, 0)!important;
    white-space: nowrap!important;
    border: 0!important;
    font-size: 2rem!important;
}
@media (max-width:992px) {
    .site-logo {
    font-size: 1.8rem;
}
nav ul {
    position: fixed;
    top: 70px;
    left: -100%;
    background-color: #fff;
    width: 100%;
    height: calc(100vh - 70px);
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: var(--transition);
}
nav ul.active {
    left: 0;
}
nav ul li {
    margin: 15px 0;
}
.mobile-menu-btn {
    display: flex;
}
.steps-container {
    flex-direction: column;
    align-items: center;
}
.step {
    max-width: 300px;
}
.step::after {
    display: none;
}
}@media (max-width:768px) {
    .site-logo {
    font-size: 1.6rem;
}
section {
    padding: 60px 0;
}
.hero {
    padding: 100px 0;
}
.schedule-form-overlay {
    padding: 1.5rem;
    margin: 0 1rem;
}
.form-row {
    flex-direction: column;
    gap: 0;
}
.form-group {
    margin-bottom: 1rem;
}
.cta-buttons {
    flex-direction: column;
    gap: 10px;
}
.testimonials-grid {
    grid-template-columns: 1fr;
}
.confirmation-message, .details-form {
    padding: 1.5rem;
}
.price-card {
    padding: 30px;
}
.services-grid {
    grid-template-columns: repeat(1, 1fr);
}
.hero-content {
    padding: 20px;
    margin-bottom: 40px;
}

}@media (max-width:576px) {
    header .container {
    padding: 15px;
}
.hero {
    padding: 80px 0;
}
.hero h2 {
    font-size: 16px;
}
.hero h3 {
    font-size: 20px;
}
.hero p {
    font-size: 16px;
}
.services-grid {
    grid-template-columns: 1fr;
}
.price-card {
    padding: 20px;
}
.form-row {
    flex-direction: row!important;
}
.form-row .form-group {
    width: auto;
    flex: 1;
}
.form-group label {
    font-size: 1rem;
}
.cta-buttons {
    flex-direction: column;
}
.cta-buttons .btn {
    margin-bottom: 10px;
}
.schedule-form-overlay {
    padding: 1rem;
    border-radius: 12px;
    margin: 0 .5rem;
    width: calc(100% - 2rem);
}
.form-group input, .form-group select {
    padding: 12px 10px;
    font-size: 16px;
}
.schedule-form-overlay h2 {
    font-size: 1rem;
    margin-top: 10px;
}


input[type=date] {
    min-width: 0;
}
.section-title {
    font-size: 1rem;
}
.btn {
    padding: .75rem 1rem;
}
.break-on-mobile {
    display: block;
    margin-top: .5rem;
}
.footer-contact {
    margin-top: 10px;
}
.footer-contact a, .footer-contact p {
    font-size: 16px;
}
.contact-icon {
    width: 20px;
    height: 20px;
}
}@media (max-width:480px) {
    .site-logo {
    font-size: 1.4rem;
}
.schedule-form-overlay {
    padding: 1.25rem;
}
.confirmation-message h2, .schedule-form-overlay h2 {
    font-size: 1rem;
}

.hero h3 {
    font-size: 20px;
}

.section-title {
    font-size: 1rem;
    padding: 1rem;
}
.form-group input, .form-group select {
    padding: .8rem 1rem;
}
.confirmation-message p {
    font-size: 1rem;
}
.services-section {
    padding: 3rem 0;
}
.services-grid {
    padding: 0 1.5rem;
}
.important-notice {
    padding: .9rem;
    margin-bottom: 1.25rem;
}
.important-notice ul {
    padding-left: 1.25rem;
}
}@media (max-width:360px) {
    .form-group input, .form-group select {
    padding: 10px 8px;
    font-size: 16px;
}
.form-group label {
    font-size: 1rem;
}
}