/* Define the custom fonts */
@font-face {
    font-family: 'Aaargh';
    src: url('font/Aaargh.ttf') format('truetype');
}

@font-face {
    font-family: 'Welcome 2019';
    src: url('font/Welcome2019.ttf') format('truetype');
}

/* Apply the custom fonts */
body {
    font-family: 'Aaargh';
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #388b9c;
}

header {
    padding: 20px;
    background-color: #ffffff;
    font-family: 'Welcome 2019'; /* Apply the header font */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0 auto;
    padding-bottom: 5px;
    border-bottom: 2px solid #ecebeb; /* Soft grey border */
}

header .logo img {
    width: 25%; /* Increase the logo size */
    height: auto;
    margin-right: 20px;
}

.main-content,  
.love-section,
.being-section,
.session-section {
    padding: 10px 20px;
    text-align: center;
    background-color: #ffffff;
    max-width: 70%; /* Limit the width of the text */
    margin: 0 auto; /* Center the content */
}

h2 {
    color: #388b9c;
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Welcome 2019'; /* Apply the header font */
}

p {
    color: #5d5c5c;
    font-size: 18px;
    font-family: 'Aaargh'; /* Apply the body font */
    line-height: 1.6;
}

.subtext {
    color: #5d5c5c;
    font-size: 18px;
    font-family: 'Aaargh'; /* Apply the body font */
    line-height: 1.6;
}

.section {
    padding: 40px 20px;
    text-align: left;
    background-color: #ffffff;
    max-width: 70%; /* Limit the width of the text */
    margin: 0 auto; /* Center the content */
}

.section h2 {
    text-align: center;
    color: #a3a3a3;
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Welcome 2019'; /* Apply the header font */
}

.section p {
    color: #5f6c74;
}

.truth-section {
    text-align: center;
}

.truth-section h2 {
    color: #388b9c;
    font-size: 32px;
    font-weight: bold;
    font-family: 'Welcome 2019'; /* Apply the header font */
}

.truth-section p {
    font-size: 18px;
    color: #7E7E7E;
    line-height: 1.6;
    margin: 20px 0;
    font-family: 'Aaargh'; /* Apply the body font */
}

.disclaimer-section p {
    padding: 20px;
    max-width: 70%;
    margin: 20px auto 0 auto;
    font-size: 12px;
    color: #7E7E7E;
    font-family: 'Aaargh'; /* Apply the body font */
}

.disclaimer-section strong {
    color: #388b9c;
}

.footer-section {
    background-color: #388b9c;
    padding: 20px 0;
    text-align: center;
    color: white;
}

.footer-container {
    max-width: 70%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 10px; /* Add some space between the items */
}

.footer-item {
    margin: 10px 0;
    font-size: 16px;
}

.footer-item a {
    color: white;
    text-decoration: underline;
}

.footer-item a:hover {
    text-decoration: none;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
    }
}
