.tour-body > * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif !important;
}

.tour-body {
    line-height: 1.6;
    color: #333;
    /*background-color: #f5f5f5;*/
    padding: 0px 20px;
}

.contents_wrap {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 30px;
}

.content_title {
    font-size: 2.5em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.title {
    font-size: 1.8em;
    color: #3498db;
    text-align: center;
    margin-bottom: 30px;
}

.tour-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.tour-table {
    width: 100%;
    margin-bottom: 20px;
	border-collapse: separate;
}

.tour-table td {
    padding: 15px;
    vertical-align: top;
}

.table-label {
    background: #3498db;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 5px 0 0 5px;
}

.table-value {
    background: white;
    border-radius: 0 5px 5px 0;
}

ol {
    padding-left: 20px;
    margin: 10px 0;
}

.itinerary {
    font-style: italic;
    color: #666;
}

.itinerary img {
    margin: 0 10px;
}

.description {
    font-size: 1.1em;
    margin: 20px 0;
    padding: 15px;
    background: #eef2f7;
    border-left: 4px solid #3498db;
    border-radius: 5px;
}

.attraction {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.attraction img {
    border-radius: 5px;
    object-fit: cover;
}

.attraction h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.contact_wrap {
    text-align: center;
    margin: 40px 0 20px;
}

.contact_title {
    font-size: 1.5em;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    display: inline-block;
}

.contact_text_wrap {
    text-align: center;
    margin: 20px 0;
}

.contact_text_wrap span {
    /*display: block;*/
   /*margin: 10px 0;*/
   margin: 10px 10px;
}

.contact_text_wrap a {
    color: #e91e63;
    text-decoration: none;
}

.contact_text_wrap a:hover {
    text-decoration: underline;
}

.download_btn {
    text-align: center;
    margin: 30px 0;
}

.download_btn a {
    display: inline-block;
    background: #e91e63;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.2em;
    transition: transform 0.2s;
}

.download_btn a:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {

	.contact_text_wrap span {
		display: block;
		margin: 10px 0;
	}

    .attraction {
        flex-direction: column;
    }

    .tour-table td {
        display: block;
        width: 100%;
    }

    .table-label {
        border-radius: 5px 5px 0 0;
    }

    .table-value {
        border-radius: 0 0 5px 5px;
    }
}
