body {
    font-family: 'Gordita', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.blog-post {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.blog-post h1 {
    font-family: 'Recoleta', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-post h2 {
    font-family: 'Recoleta', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-post h3 {
    font-family: 'Recoleta', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.6;
}

.blog-post p strong {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.2rem;
}

.blog-post ul {
    margin: 0 0 1.5rem 0;
    padding: 0;
    list-style: none;
}

.blog-post ul li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.blog-post ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.call-to-action {
    text-align: center;
    margin-top: 3rem;
}

.call-to-action .theme-btn-seven {
    background-color: #FF2759;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.call-to-action .theme-btn-seven:hover {
    background-color: #e0244e;
}

.blog-header {
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 0rem 0;
    margin-bottom: 30px;
}

.blog-header .logo img {
    height: 120px;
}

.blog-header nav {
    display: flex;
    gap: 1.5rem;
}

.blog-header .nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-header .nav-link:hover {
    color: #FF2759;
}

.blog-header .theme-btn-seven {
    background-color: #FF2759;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.blog-header .theme-btn-seven:hover {
    background-color: #e0244e;
}

.blog-roll {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-roll h3 {
    font-family: 'gordita', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1d1d1d;
}

.blog-roll ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-roll ul li {
    margin-bottom: 1.5rem;
}

.blog-roll ul li:last-child {
    margin-bottom: 0;
}

.blog-roll ul li a {
    color: #1d1d1d;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.blog-roll ul li a:hover {
    color: #007bff;
} 