@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
	--agw-color-text: #1a1a1a;
	--agw-color-accent: #2563b0;
	--agw-color-bg: #ffffff;
	--agw-font-sans: 'Inter', sans-serif;
	--agw-font-serif: 'Playfair Display', serif;
}

.ai-get-wise-wrapper {
	font-family: var(--agw-font-sans);
	color: var(--agw-color-text);
	background-color: var(--agw-color-bg);
}

.agw-btn {
	display: inline-block;
	background-color: var(--agw-color-accent);
	color: #ffffff;
	padding: 18px 40px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	transition: background-color 0.3s ease;
}

.agw-btn:hover {
	background-color: #1e508f;
	color: #ffffff;
}

.agw-heading {
	font-family: var(--agw-font-serif);
	color: var(--agw-color-text);
}
