 :root {
            --primary-color: #53b5d3;
            --primary-dark: #3a9cb8;
            --secondary-color: #f8a5d8;
            --light-color: #f0f9fc;
            --dark-color: #2c3e50;
            --text-color: #333;
            --white: #ffffff;
        }

        body {
            background-color: #f9fbfd;
            color: var(--text-color);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }



        /* 联系区域样式 */
        .contact-section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--dark-color);
            max-width: 700px;
            margin: 20px auto 0;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
            background-color: var(--white);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .contact-info h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .info-icon {
            background-color: var(--light-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary-color);
            font-size: 1.3rem;
        }

        .info-content h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--dark-color);
        }

        .info-content p {
            color: #666;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: var(--white);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .contact-form h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(83, 181, 211, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        
        tbody tr {
            display: block;
            margin-bottom: 20px;
        }

        tbody td {display: block;
            width: 100%;
            text-align: left;
        }
        tbody td input{border-radius: 8px;}
        .coolbg{width: 25%;background: #53b5d3;    border: 0;
    height: 100%;
    margin-left: 5%;}

        .submit-btn {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s;
            display: inline-block;
        }

        .submit-btn:hover {
            background-color: var(--primary-dark);
        }

        /* 地图区域样式 */
        .map-section {
            padding: 0 0 80px;
        }

        .map-container {
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .map-overlay {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 10px;
            max-width: 300px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .map-overlay h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .map-overlay p {
            margin-bottom: 5px;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
           .section-title h2,.contact-info h3,.contact-form h3{font-size: 18px;}
           .section-title p,.info-content h4{font-size: 16px;}
           .info-content p{font-size: 14px;}
           .info-icon{display: none;}


        }

        /* 装饰元素 */
        .baby-footprint {
            position: absolute;
            opacity: 0.1;
            z-index: 1;
        }

        .footprint-1 {
            top: 20%;
            left: 10%;
            transform: rotate(15deg);
            font-size: 3rem;
            color: var(--primary-color);
        }

        .footprint-2 {
            bottom: 25%;
            right: 15%;
            transform: rotate(-10deg);
            font-size: 2.5rem;
            color: var(--secondary-color);
        }

        .footprint-3 {
            top: 40%;
            right: 25%;
            transform: rotate(25deg);
            font-size: 2rem;
            color: var(--primary-color);
        }