.container {
     max-width: 800px;
     margin: 0 auto;
     padding: 20px 20px;
 }

.back-btn {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    color: #184363;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(76, 110, 245, 0.1);
}

.back-btn:hover {
    background: rgba(76, 110, 245, 0.2);
    transform: translateX(-3px);
}

.content {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    color: #184363;
    margin-bottom: 20px;
    text-align: left;
}

h2 {
    font-size: 18px;
    font-weight: 600;
    color: #184363;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 2px solid #4c6ef5;
  text-align: left;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    text-align: left;
    text-justify: inter-word;
}

.bottom-btn {
    text-align: center;
    padding-bottom: 15px;
}

.bottom-btn a {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #184363;
    text-decoration: none;
    font-weight: 500;
    gap: 8px;
    padding: 12px 12px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.bottom-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #4c6ef5;
    color: white;
}

@media (max-width: 768px) {

	.container {
		padding: 15px 15px;
	}

	.content {
		padding: 20px 20px;
	}

	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 18px;
	}

}
@media (max-width: 480px) {
	h1 {
		font-size: 24px;
	}

    h2 {
        font-size: 18px;
    }

    p {
        font-size: 15px;
    }

    .content {
        padding: 20px 20px;
    }
}