* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}
.name_post{
	font-style: italic; padding-left: 60px; color: #0e2b3f;
	
}
.post{
	 color: #0e2b3f;
	
	
}
.opus{
	font-weight: bold;
}



.main-cta:hover {
    background-color: #0056b3;
}

.section {
    padding: 10px 10px;
    text-align: center;
}

h2 {
    margin-bottom: 40px;
    font-size: 2em;
}

/* HEADER - АДАПТИВНА НАВІГАЦІЯ (Flexbox) */
.header {
	height: 150px;
    display: flex;
    justify-content: space-between;
    align-items:baseline;
    padding: 0px 0px 0px 0px;
    background-color:#f2ede5;
    
    position: sticky;
    top: 0;
    z-index: 1000;
	box-shadow: 0px 5px 5px #D4D0D0 ;
}

.logo {
    font-size: 0.0em;
    font-weight: bold;
}



/* HERO SECTION */


/* SERVICES GRID - АДАПТИВНИЙ GRID */
.services-grid {
	
	margin: 0px;
	padding: 0px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 90px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding:30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* CONTACT FORM */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}



/* FOOTER */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

