.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;
}

.container {
   /* max-width: 1200px;*/
    margin: 0 auto;
}

.header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(180deg, #4e2782 0%, rgba(201,4,4,0.7) 100%);
    color: white;
    border-radius: 10px;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
	color:#fff;
}

.header p {
    font-size: 1.2em;
    opacity: 0.9;
	color:#fff;
}

.intro-text {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
    color: #666;
    font-size: 1.1em;
}

.intro-text p{
	color: #666;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tour-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-card-content {
    padding: 20px;
}

.tour-card h2 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.tour-card p {
    color: #666;
    margin-bottom: 15px;
}

.tour-card a {
    display: inline-block;
    background: #e91e63;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.tour-card a:hover {
    background: #c2185b;
}

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

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

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

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

@media (max-width: 768px) {
	.contact_text_wrap span {
		display: block;
		margin: 10px 0;
	}

    .header {
        padding: 30px 20px;
    }

    .header h1 {
        font-size: 2em;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }
}
